You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Sam Roberts dfa8abe1b5 deps: upgrade zlib to 1.2.11 8 years ago
..
README.examples deps: upgrade zlib to 1.2.8 10 years ago
enough.c deps: upgrade zlib to 1.2.8 10 years ago
fitblk.c deps: upgrade zlib to 1.2.8 10 years ago
gun.c deps: upgrade zlib to 1.2.11 8 years ago
gzappend.c deps: upgrade zlib to 1.2.8 10 years ago
gzjoin.c deps: upgrade zlib to 1.2.8 10 years ago
gzlog.c deps: upgrade zlib to 1.2.11 8 years ago
gzlog.h deps: upgrade zlib to 1.2.8 10 years ago
zlib_how.html deps: upgrade zlib to 1.2.8 10 years ago
zpipe.c deps: upgrade zlib to 1.2.8 10 years ago
zran.c deps: upgrade zlib to 1.2.11 8 years ago

README.examples

This directory contains examples of the use of zlib and other relevant
programs and documentation.

enough.c
calculation and justification of ENOUGH parameter in inftrees.h
- calculates the maximum table space used in inflate tree
construction over all possible Huffman codes

fitblk.c
compress just enough input to nearly fill a requested output size
- zlib isn't designed to do this, but fitblk does it anyway

gun.c
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

gzappend.c
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

gzjoin.c
join gzip files without recalculating the crc or recompressing
- illustrates the use of the Z_BLOCK flush parameter for inflate()