aboutsummaryrefslogtreecommitdiff
path: root/examples/README.examples
diff options
context:
space:
mode:
authorMark Adler <madler@alumni.caltech.edu>2011-10-09 09:50:48 -0700
committerMark Adler <madler@alumni.caltech.edu>2011-10-09 09:50:48 -0700
commit1bd2fa1b241d24dc444f17d217429780f0b657c0 (patch)
tree833a967a97b573bb95c429ed2eca987a8dc960cf /examples/README.examples
parent77b47d55f14be032c0ee10da44bbe7591be0abd8 (diff)
downloadzlib-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.examples9
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
9example.c
10 usage examples of zlib
11 - used in zlib build Makefile for testing
12
9fitblk.c 13fitblk.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
41minigzip.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
37zlib_how.html 46zlib_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()