summaryrefslogtreecommitdiff
path: root/examples/README.examples
diff options
context:
space:
mode:
authorMark Adler <madler@alumni.caltech.edu>2011-09-09 23:24:43 -0700
committerMark Adler <madler@alumni.caltech.edu>2011-09-09 23:24:43 -0700
commit6b8233bfe00e79134cb1b84fc49d4f750a797f79 (patch)
treeca2b03b0169568681dc3d9c823e9f0bc4417d6b5 /examples/README.examples
parent0484693e1723bbab791c56f95597bd7dbe867d03 (diff)
downloadzlib-1.2.2.3.tar.gz
zlib-1.2.2.3.tar.bz2
zlib-1.2.2.3.zip
zlib 1.2.2.3v1.2.2.3
Diffstat (limited to '')
-rw-r--r--examples/README.examples8
1 files changed, 8 insertions, 0 deletions
diff --git a/examples/README.examples b/examples/README.examples
index 1084525..75e9970 100644
--- a/examples/README.examples
+++ b/examples/README.examples
@@ -4,6 +4,13 @@ fitblk.c
4 compress just enough input to nearly fill a requested output size 4 compress just enough input to nearly fill a requested output size
5 - zlib isn't designed to do this, but fitblk does it anyway 5 - zlib isn't designed to do this, but fitblk does it anyway
6 6
7gun.c
8 uncompress a gzip file
9 - illustrates the use of inflateBack() for high speed file-to-file
10 decompression using call-back functions
11 - is approximately twice as fast as gzip -d
12 - also provides Unix uncompress functionality, again twice as fast
13
7gzappend.c 14gzappend.c
8 append to a gzip file 15 append to a gzip file
9 - illustrates the use of the Z_BLOCK flush parameter for inflate() 16 - illustrates the use of the Z_BLOCK flush parameter for inflate()
@@ -27,3 +34,4 @@ zlib_how.html
27zpipe.c 34zpipe.c
28 reads and writes zlib streams from stdin to stdout 35 reads and writes zlib streams from stdin to stdout
29 - illustrates the proper use of deflate() and inflate() 36 - illustrates the proper use of deflate() and inflate()
37 - deeply commented in zlib_how.html (see above)