Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix license notices | Patrick McDermott | 2023-06-18 | 1 | -4/+4 |
| | |||||
* | gzip: Separate last compression from freeing | Patrick McDermott | 2023-05-08 | 1 | -3/+15 |
| | |||||
* | gzip: Count and report bytes written | Patrick McDermott | 2023-05-07 | 1 | -0/+9 |
| | |||||
* | Revert "gzip: Test code" | Patrick McDermott | 2023-05-07 | 1 | -82/+0 |
| | | | | This reverts commit 075f39b18619274bd5ae78a516a93df268b9ef7e. | ||||
* | gzip: Test code | Patrick McDermott | 2023-05-07 | 1 | -0/+82 |
| | |||||
* | gzip: Write compressed output to file directly | Patrick McDermott | 2023-05-07 | 1 | -32/+18 |
| | |||||
* | gzip: Split init functions | Patrick McDermott | 2023-05-07 | 1 | -44/+45 |
| | |||||
* | gzip: Fix flushing | Patrick McDermott | 2023-05-02 | 1 | -2/+15 |
| | | | | | | deflate() apparently must be called with avail_in=0 and Z_FINISH after processing all input, not with Z_FINISH on the last non-empty input buffer. | ||||
* | Revert "gzip: Test code" | Patrick McDermott | 2023-05-02 | 1 | -103/+0 |
| | | | | This reverts commit 12277cad55c6d3910dbc24ab32baf405f8970d64. | ||||
* | gzip: Test code | Patrick McDermott | 2023-05-02 | 1 | -0/+103 |
| | |||||
* | gzip: Preserve gzip header | Patrick McDermott | 2023-05-02 | 1 | -9/+9 |
| | | | | | | zlib doesn't copy it anywhere between deflateSetHeader() and deflate(), so we need to make sure it doesn't get corrupted on the stack in the meantime. | ||||
* | gzip: Fix write buffer | Patrick McDermott | 2023-04-30 | 1 | -2/+2 |
| | |||||
* | gzip: Get write buffer after init | Patrick McDermott | 2023-04-30 | 1 | -13/+19 |
| | |||||
* | gzip: Add write direction | Patrick McDermott | 2023-04-28 | 1 | -15/+136 |
| | |||||
* | gzip: Cast to avoid warnings | Patrick McDermott | 2023-04-18 | 1 | -2/+3 |
| | |||||
* | gzip: Make more robust | Patrick McDermott | 2023-04-17 | 1 | -4/+17 |
| | |||||
* | main: Cast function type | Patrick McDermott | 2023-04-15 | 1 | -1/+1 |
| | |||||
* | Eliminate magic numbers | Patrick McDermott | 2023-04-14 | 1 | -2/+5 |
| | |||||
* | gzip, ustar: Add *_free() functions | Patrick McDermott | 2023-04-14 | 1 | -3/+7 |
| | |||||
* | gzip: Rewrite | Patrick McDermott | 2023-04-14 | 1 | -84/+47 |
| | |||||
* | ustar: Fix EOF logic | Patrick McDermott | 2023-04-13 | 1 | -7/+11 |
| | |||||
* | gzip: Set windowBits for gzip | Patrick McDermott | 2023-04-13 | 1 | -1/+1 |
| | |||||
* | main: List archive members | Patrick McDermott | 2023-04-13 | 1 | -8/+0 |
| | |||||
* | gzip: Split out return value constants | Patrick McDermott | 2023-04-13 | 1 | -13/+14 |
| | |||||
* | gzip: Implement | Patrick McDermott | 2023-04-13 | 1 | -0/+134 |