zlib/examples
Mark Adler 2968a496d9 Remove unneeded dependency on limits.h in examples/zran.c. 2024-09-01 13:17:29 -07:00
..
README.examples Fix the zran.c example to work on a multiple-member gzip file. 2018-10-14 09:57:34 -07:00
enough.c Avoid use of uintmax_t in enough.c. 2024-07-29 14:30:50 -07:00
fitblk.c Fix some spelling errors. 2023-08-03 13:53:24 -07:00
gun.c Use z_const for setting msg to literal strings. 2024-04-01 11:49:05 -07:00
gzappend.c Fix some typos. 2022-08-23 15:35:13 -07:00
gzjoin.c Clean up examples/gzjoin.c for z_const usage. 2012-08-14 00:30:44 -07:00
gzlog.c Fix "the the" in examples/gzlog.c. 2024-01-17 12:52:01 -08:00
gzlog.h Fix some typos. 2022-08-23 15:35:13 -07:00
gznorm.c Further address Microsoft deprecation warnings. 2024-02-09 20:11:54 -08:00
zlib_how.html Update zlib_how.html to match the web page, and add a license. 2023-01-24 20:43:19 -08:00
zpipe.c Further address Microsoft deprecation warnings. 2024-02-09 20:11:54 -08:00
zran.c Remove unneeded dependency on limits.h in examples/zran.c. 2024-09-01 13:17:29 -07:00
zran.h Update zran version. 2024-02-04 18:51:31 -08:00

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()
    - illustrates the use of crc32_combine()

gzlog.c
gzlog.h
    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

gznorm.c
    normalize a gzip file by combining members into a single member
    - demonstrates how to concatenate deflate streams using Z_BLOCK

zlib_how.html
    painfully comprehensive description of zpipe.c (see below)
    - describes in excruciating detail the use of deflate() and inflate()

zpipe.c
    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)

zran.c
zran.h
    index a zlib or gzip stream and randomly access it
    - illustrates the use of Z_BLOCK, inflatePrime(), and
      inflateSetDictionary() to provide random access