summaryrefslogtreecommitdiffstats
path: root/cpukit/zlib/examples/README.examples
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/zlib/examples/README.examples')
-rw-r--r--cpukit/zlib/examples/README.examples13
1 files changed, 13 insertions, 0 deletions
diff --git a/cpukit/zlib/examples/README.examples b/cpukit/zlib/examples/README.examples
index 1084525204..5632d7a4cc 100644
--- a/cpukit/zlib/examples/README.examples
+++ b/cpukit/zlib/examples/README.examples
@@ -4,6 +4,13 @@ fitblk.c
compress just enough input to nearly fill a requested output size
- zlib isn't designed to do this, but fitblk does it anyway
+gun.c
+ uncompress a gzip file
+ - illustrates the use of inflateBack() for high speed file-to-file
+ decompression using call-back functions
+ - is approximately twice as fast as gzip -d
+ - also provides Unix uncompress functionality, again twice as fast
+
gzappend.c
append to a gzip file
- illustrates the use of the Z_BLOCK flush parameter for inflate()
@@ -27,3 +34,9 @@ zlib_how.html
zpipe.c
reads and writes zlib streams from stdin to stdout
- illustrates the proper use of deflate() and inflate()
+ - deeply commented in zlib_how.html (see above)
+
+zran.c
+ index a zlib or gzip stream and randomly access it
+ - illustrates the use of Z_BLOCK, inflatePrime(), and
+ inflateSetDictionary() to provide random access