diff options
Diffstat (limited to 'examples/README.examples')
-rw-r--r-- | examples/README.examples | 8 |
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 | ||
7 | gun.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 | |||
7 | gzappend.c | 14 | gzappend.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 | |||
27 | zpipe.c | 34 | zpipe.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) | ||