OXIESEC PANEL
- Current Dir:
/
/
snap
/
certbot
/
4737
/
usr
/
share
/
doc
/
zlib1g-dev
/
examples
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
06/12/2025 06:19:49 PM
rwxr-xr-x
📄
README.examples
1.92 KB
11/06/2023 04:24:26 PM
rw-r--r--
📄
crc32_test.c
10.55 KB
08/09/2024 02:33:20 AM
rw-r--r--
📄
enough.c
24.27 KB
11/06/2023 04:24:26 PM
rw-r--r--
📄
example.c
15.08 KB
11/06/2023 04:24:26 PM
rw-r--r--
📄
fitblk.c
8.39 KB
11/06/2023 04:24:26 PM
rw-r--r--
📄
gun.c
25.33 KB
11/06/2023 04:24:26 PM
rw-r--r--
📄
gzappend.c
16.58 KB
11/06/2023 04:24:26 PM
rw-r--r--
📄
gzjoin.c
13.8 KB
11/06/2023 04:24:26 PM
rw-r--r--
📄
gzlog.c
40.57 KB
11/06/2023 04:24:26 PM
rw-r--r--
📄
gzlog.h
4.45 KB
11/06/2023 04:24:26 PM
rw-r--r--
📄
gznorm.c
21.66 KB
11/06/2023 04:24:26 PM
rw-r--r--
📄
infcover.c
24.13 KB
08/09/2024 02:33:20 AM
rw-r--r--
📄
minigzip.c
14.48 KB
08/09/2024 02:33:20 AM
rw-r--r--
📄
zlib_how.html
29.13 KB
11/06/2023 04:24:26 PM
rw-r--r--
📄
zpipe.c
6.17 KB
11/06/2023 04:24:26 PM
rw-r--r--
📄
zran.c
20.91 KB
11/06/2023 04:24:26 PM
rw-r--r--
📄
zran.h
2.66 KB
11/06/2023 04:24:26 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 gznorm.c normalize a gzip file by combining members into a single member - demonstrates how to concatenate deflate streams using Z_BLOCK 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 zran.h index a zlib or gzip stream and randomly access it - illustrates the use of Z_BLOCK, inflatePrime(), and inflateSetDictionary() to provide random access