diff options
Diffstat (limited to 'examples/README.examples')
-rw-r--r-- | examples/README.examples | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/examples/README.examples b/examples/README.examples index 56a3171..fddb8df 100644 --- a/examples/README.examples +++ b/examples/README.examples | |||
@@ -6,6 +6,10 @@ enough.c | |||
6 | - calculates the maximum table space used in inflate tree | 6 | - calculates the maximum table space used in inflate tree |
7 | construction over all possible Huffman codes | 7 | construction over all possible Huffman codes |
8 | 8 | ||
9 | example.c | ||
10 | usage examples of zlib | ||
11 | - used in zlib build Makefile for testing | ||
12 | |||
9 | fitblk.c | 13 | fitblk.c |
10 | compress just enough input to nearly fill a requested output size | 14 | compress just enough input to nearly fill a requested output size |
11 | - zlib isn't designed to do this, but fitblk does it anyway | 15 | - zlib isn't designed to do this, but fitblk does it anyway |
@@ -34,6 +38,11 @@ gzlog.h | |||
34 | and deflateSetDictionary() | 38 | and deflateSetDictionary() |
35 | - illustrates use of a gzip header extra field | 39 | - illustrates use of a gzip header extra field |
36 | 40 | ||
41 | minigzip.c | ||
42 | minimal implementation of gzip-like functionality using zlib | ||
43 | - used in zlib build Makefile for testing | ||
44 | - is not meant for and should not be used as a gzip replacement | ||
45 | |||
37 | zlib_how.html | 46 | zlib_how.html |
38 | painfully comprehensive description of zpipe.c (see below) | 47 | painfully comprehensive description of zpipe.c (see below) |
39 | - describes in excruciating detail the use of deflate() and inflate() | 48 | - describes in excruciating detail the use of deflate() and inflate() |