summaryrefslogtreecommitdiff
path: root/Build/source/libs/zlib/zlib-1.2.5/examples/README.examples
diff options
context:
space:
mode:
authorPeter Breitenlohner <peb@mppmu.mpg.de>2012-02-10 13:50:19 +0000
committerPeter Breitenlohner <peb@mppmu.mpg.de>2012-02-10 13:50:19 +0000
commit3562f80e5794c062e8d3b071c4305e06688cafcb (patch)
tree9259909c789606caf5ffddf4f208af1f51eb3ed1 /Build/source/libs/zlib/zlib-1.2.5/examples/README.examples
parentb85385edea235ecca799dabe0c9b9248a84d8824 (diff)
zlib 1.2.6
git-svn-id: svn://tug.org/texlive/trunk@25351 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/libs/zlib/zlib-1.2.5/examples/README.examples')
-rw-r--r--Build/source/libs/zlib/zlib-1.2.5/examples/README.examples49
1 files changed, 0 insertions, 49 deletions
diff --git a/Build/source/libs/zlib/zlib-1.2.5/examples/README.examples b/Build/source/libs/zlib/zlib-1.2.5/examples/README.examples
deleted file mode 100644
index 56a31714e56..00000000000
--- a/Build/source/libs/zlib/zlib-1.2.5/examples/README.examples
+++ /dev/null
@@ -1,49 +0,0 @@
-This directory contains examples of the use of zlib and other relevant
-programs and documentation.
-
-enough.c
- calculation and justification of ENOUGH parameter in inftrees.h
- - calculates the maximum table space used in inflate tree
- construction over all possible Huffman codes
-
-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()
- - illustrates the use of deflatePrime() to start at any bit
-
-gzjoin.c
- join gzip files without recalculating the crc or recompressing
- - illustrates the use of the Z_BLOCK flush parameter for inflate()
- - illustrates the use of crc32_combine()
-
-gzlog.c
-gzlog.h
- efficiently and robustly maintain a message log file in gzip format
- - illustrates use of raw deflate, Z_PARTIAL_FLUSH, deflatePrime(),
- and deflateSetDictionary()
- - illustrates use of a gzip header extra field
-
-zlib_how.html
- painfully comprehensive description of zpipe.c (see below)
- - describes in excruciating detail the use of deflate() and inflate()
-
-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