summaryrefslogtreecommitdiff
path: root/examples/README.examples
diff options
context:
space:
mode:
Diffstat (limited to 'examples/README.examples')
-rw-r--r--examples/README.examples21
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 @@
1This directory contains examples of the use of zlib. 1This directory contains examples of the use of zlib and other relevant
2programs and documentation.
3
4enough.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
3fitblk.c 9fitblk.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
24gzlog.c 30gzlog.c
25gzlog.h 31gzlog.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
37pigz.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
30zlib_how.html 43zlib_how.html
31 painfully comprehensive description of zpipe.c (see below) 44 painfully comprehensive description of zpipe.c (see below)