Name | Date | Size | |
---|---|---|---|
.. | 2012-03-05 14:39:00 | 58 | |
enough.c | 2012-03-05 14:39:00 | 23.5 KiB | |
fitblk.c | 2012-03-05 14:39:00 | 8.4 KiB | |
gun.c | 2012-03-05 14:39:00 | 25.2 KiB | |
gzappend.c | 2012-03-05 14:39:00 | 16.4 KiB | |
gzjoin.c | 2012-03-05 14:39:00 | 13.7 KiB | |
gzlog.c | 2012-03-05 14:39:00 | 40.5 KiB | |
gzlog.h | 2012-03-05 14:39:00 | 4.3 KiB | |
README.examples | 2012-03-05 14:39:00 | 1.8 KiB | |
zlib_how.html | 2012-03-05 14:39:00 | 29.1 KiB | |
zpipe.c | 2012-03-05 14:39:00 | 6.2 KiB | |
zran.c | 2012-03-05 14:39:00 | 15 KiB |
README.examples
This directory contains examples of the use of zlib and other relevant
programs and documentation.
calculation and justification of ENOUGH parameter in inftrees.h
- calculates the maximum table space used in inflate tree
construction over all possible Huffman codes
compress just enough input to nearly fill a requested output size
- zlib isn't designed to do this, but fitblk does it anyway
uncompress a gzip file
- illustrates the use of inflateBack() for high speed file-to-file
decompression using call-back functions
- is approximately twice as fast as gzip -d
- also provides Unix uncompress functionality, again twice as fast
append to a gzip file
- illustrates the use of the Z_BLOCK flush parameter for inflate()
- illustrates the use of deflatePrime() to start at any bit
join gzip files without recalculating the crc or recompressing
- illustrates the use of the Z_BLOCK flush parameter for inflate()
- illustrates the use of crc32_combine()
efficiently and robustly maintain a message log file in gzip format
- illustrates use of raw deflate, Z_PARTIAL_FLUSH, deflatePrime(),
and deflateSetDictionary()
- illustrates use of a gzip header extra field
painfully comprehensive description of zpipe.c (see below)
- describes in excruciating detail the use of deflate() and inflate()
reads and writes zlib streams from stdin to stdout
- illustrates the proper use of deflate() and inflate()
- deeply commented in zlib_how.html (see above)
index a zlib or gzip stream and randomly access it
- illustrates the use of Z_BLOCK, inflatePrime(), and
inflateSetDictionary() to provide random access