diff options
author | Mark Adler <madler@alumni.caltech.edu> | 2011-10-09 09:50:48 -0700 |
---|---|---|
committer | Mark Adler <madler@alumni.caltech.edu> | 2011-10-09 09:50:48 -0700 |
commit | 1bd2fa1b241d24dc444f17d217429780f0b657c0 (patch) | |
tree | 833a967a97b573bb95c429ed2eca987a8dc960cf /examples/README.examples | |
parent | 77b47d55f14be032c0ee10da44bbe7591be0abd8 (diff) | |
download | zlib-1bd2fa1b241d24dc444f17d217429780f0b657c0.tar.gz zlib-1bd2fa1b241d24dc444f17d217429780f0b657c0.tar.bz2 zlib-1bd2fa1b241d24dc444f17d217429780f0b657c0.zip |
Move example.c and minigzip.c to examples/ directory.
Diffstat (limited to '')
-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() |