diff options
Diffstat (limited to 'examples/README.examples')
-rw-r--r-- | examples/README.examples | 21 |
1 files changed, 17 insertions, 4 deletions
diff --git a/examples/README.examples b/examples/README.examples index 5632d7a..146919c 100644 --- a/examples/README.examples +++ b/examples/README.examples | |||
@@ -1,4 +1,10 @@ | |||
1 | This directory contains examples of the use of zlib. | 1 | This directory contains examples of the use of zlib and other relevant |
2 | programs and documentation. | ||
3 | |||
4 | enough.c | ||
5 | calculation and justification of ENOUGH parameter in inftrees.h | ||
6 | - calculates the maximum table space used in inflate tree | ||
7 | construction over all possible Huffman codes | ||
2 | 8 | ||
3 | fitblk.c | 9 | fitblk.c |
4 | compress just enough input to nearly fill a requested output size | 10 | compress just enough input to nearly fill a requested output size |
@@ -23,9 +29,16 @@ gzjoin.c | |||
23 | 29 | ||
24 | gzlog.c | 30 | gzlog.c |
25 | gzlog.h | 31 | gzlog.h |
26 | efficiently maintain a message log file in gzip format | 32 | efficiently and robustly maintain a message log file in gzip format |
27 | - illustrates use of raw deflate and Z_SYNC_FLUSH | 33 | - illustrates use of raw deflate, Z_PARTIAL_FLUSH, deflatePrime(), |
28 | - illustrates use of gzip header extra field | 34 | and deflateSetDictionary() |
35 | - illustrates use of a gzip header extra field | ||
36 | |||
37 | pigz.c | ||
38 | parallel implementation of gzip compression | ||
39 | - uses pthreads to speed up compression on multiple core machines | ||
40 | - illustrates the use of deflateSetDictionary() with raw deflate | ||
41 | - illustrates the use of crc32_combine() | ||
29 | 42 | ||
30 | zlib_how.html | 43 | zlib_how.html |
31 | painfully comprehensive description of zpipe.c (see below) | 44 | painfully comprehensive description of zpipe.c (see below) |