summaryrefslogtreecommitdiffstats
path: root/lib/zlib/examples/README.examples
diff options
context:
space:
mode:
authorIra Cooper <ira@samba.org>2014-07-23 00:16:24 -0700
committerIra Cooper <ira@samba.org>2014-08-09 18:26:17 +0200
commitb08cbc64c00d563738c45a701d4a7a7fd371e63f (patch)
treef781f30207886ff4f31ca98bb19b3431fce6999a /lib/zlib/examples/README.examples
parentba8ee8c9e011361cfc405b1355172d38718ba0cc (diff)
downloadsamba-b08cbc64c00d563738c45a701d4a7a7fd371e63f.tar.gz
samba-b08cbc64c00d563738c45a701d4a7a7fd371e63f.tar.xz
samba-b08cbc64c00d563738c45a701d4a7a7fd371e63f.zip
lib/zlib: Remove non third_party zlib.
Signed-off-by: Ira Cooper <ira@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'lib/zlib/examples/README.examples')
-rw-r--r--lib/zlib/examples/README.examples42
1 files changed, 0 insertions, 42 deletions
diff --git a/lib/zlib/examples/README.examples b/lib/zlib/examples/README.examples
deleted file mode 100644
index 5632d7a4cc..0000000000
--- a/lib/zlib/examples/README.examples
+++ /dev/null
@@ -1,42 +0,0 @@
-This directory contains examples of the use of zlib.
-
-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 maintain a message log file in gzip format
- - illustrates use of raw deflate and Z_SYNC_FLUSH
- - illustrates use of 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