OXIESEC PANEL
- Current Dir:
/
/
usr
/
share
/
doc
/
zlib1g-dev
/
examples
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
01/31/2023 12:36:18 PM
rwxr-xr-x
📄
README.examples
1.77 KB
01/17/2010 09:42:02 PM
rw-r--r--
📄
enough.c.gz
7.41 KB
08/19/2012 01:07:26 AM
rw-r--r--
📄
example.c.gz
3.18 KB
01/01/2017 07:37:10 AM
rw-r--r--
📄
fitblk.c.gz
2.77 KB
06/13/2005 12:31:28 AM
rw-r--r--
📄
gun.c.gz
7.44 KB
10/30/2016 03:49:01 PM
rw-r--r--
📄
gzappend.c.gz
5.44 KB
10/11/2012 11:10:59 PM
rw-r--r--
📄
gzjoin.c.gz
4.54 KB
08/14/2012 07:30:44 AM
rw-r--r--
📄
gzlog.c.gz
11.54 KB
01/01/2017 07:37:10 AM
rw-r--r--
📄
gzlog.h.gz
1.94 KB
08/19/2012 01:07:04 AM
rw-r--r--
📄
infcover.c.gz
6.56 KB
01/01/2017 07:37:10 AM
rw-r--r--
📄
minigzip.c.gz
4.51 KB
01/01/2017 07:37:10 AM
rw-r--r--
📄
zlib_how.html
29.13 KB
12/11/2005 08:57:28 PM
rw-r--r--
📄
zpipe.c.gz
1.86 KB
12/11/2005 08:57:03 PM
rw-r--r--
📄
zran.c.gz
4.66 KB
10/30/2016 03:49:01 PM
rw-r--r--
Editing: README.examples
Close
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