Initial commit of visual studio 9 git build superproject.
[git-build-vc9.git] / zlib / examples / README.examples
blobca851a59919429accd3c4adada229bdd0750a27d
1 This directory contains examples of the use of zlib.\r
2 \r
3 fitblk.c\r
4     compress just enough input to nearly fill a requested output size\r
5     - zlib isn't designed to do this, but fitblk does it anyway\r
6 \r
7 gun.c\r
8     uncompress a gzip file\r
9     - illustrates the use of inflateBack() for high speed file-to-file\r
10       decompression using call-back functions\r
11     - is approximately twice as fast as gzip -d\r
12     - also provides Unix uncompress functionality, again twice as fast\r
14 gzappend.c\r
15     append to a gzip file\r
16     - illustrates the use of the Z_BLOCK flush parameter for inflate()\r
17     - illustrates the use of deflatePrime() to start at any bit\r
19 gzjoin.c\r
20     join gzip files without recalculating the crc or recompressing\r
21     - illustrates the use of the Z_BLOCK flush parameter for inflate()\r
22     - illustrates the use of crc32_combine()\r
24 gzlog.c\r
25 gzlog.h\r
26     efficiently maintain a message log file in gzip format\r
27     - illustrates use of raw deflate and Z_SYNC_FLUSH\r
28     - illustrates use of gzip header extra field\r
30 zlib_how.html\r
31     painfully comprehensive description of zpipe.c (see below)\r
32     - describes in excruciating detail the use of deflate() and inflate()\r
34 zpipe.c\r
35     reads and writes zlib streams from stdin to stdout\r
36     - illustrates the proper use of deflate() and inflate()\r
37     - deeply commented in zlib_how.html (see above)\r
39 zran.c\r
40     index a zlib or gzip stream and randomly access it\r
41     - illustrates the use of Z_BLOCK, inflatePrime(), and\r
42       inflateSetDictionary() to provide random access\r