Retro68/binutils/zlib/examples
Wolfgang Thaller f485e125c4 binutils 2.39 2022-10-27 20:45:45 +02:00
..
README.examples binutils 2.39 2022-10-27 20:45:45 +02:00
enough.c binutils 2.39 2022-10-27 20:45:45 +02:00
fitblk.c upgrade gcc to 6.3.0, binutils to 2.28 2017-04-10 13:32:00 +02:00
gun.c Update gcc to 7.2.0, binutils to 2.29, newlib to 2.5.0 2017-10-07 02:16:47 +02:00
gzappend.c binutils 2.39 2022-10-27 20:45:45 +02:00
gzjoin.c upgrade gcc to 6.3.0, binutils to 2.28 2017-04-10 13:32:00 +02:00
gzlog.c binutils 2.39 2022-10-27 20:45:45 +02:00
gzlog.h upgrade gcc to 6.3.0, binutils to 2.28 2017-04-10 13:32:00 +02:00
gznorm.c binutils 2.39 2022-10-27 20:45:45 +02:00
zlib_how.html upgrade gcc to 6.3.0, binutils to 2.28 2017-04-10 13:32:00 +02:00
zpipe.c upgrade gcc to 6.3.0, binutils to 2.28 2017-04-10 13:32:00 +02:00
zran.c binutils 2.39 2022-10-27 20:45:45 +02:00
zran.h binutils 2.39 2022-10-27 20:45:45 +02: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