mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-07-14 12:57:10 +02:00
bin
cmake
module
Base
Core
Entity
Library
Misc
Vendor
AES256
B64
Hash
MDBC
cmake
examples
include
libmariadb
mariadb_config
plugins
win
win-iconv
zlib
amiga
contrib
doc
examples
README.examples
enough.c
fitblk.c
gun.c
gzappend.c
gzjoin.c
gzlog.c
gzlog.h
zlib_how.html
zpipe.c
zran.c
msdos
nintendods
old
os400
qnx
test
watcom
win32
CMakeLists.txt
ChangeLog
FAQ
INDEX
Makefile
Makefile.in
README
adler32.c
compress.c
configure
crc32.c
crc32.h
deflate.c
deflate.h
gzclose.c
gzguts.h
gzlib.c
gzread.c
gzwrite.c
infback.c
inffast.c
inffast.h
inffixed.h
inflate.c
inflate.h
inftrees.c
inftrees.h
make_vms.com
treebuild.xml
trees.c
trees.h
uncompr.c
zconf.h.cmakein
zconf.h.in
zconf.h.included
zlib.3
zlib.3.pdf
zlib.h
zlib.map
zlib.pc.cmakein
zlib.pc.in
zlib2ansi
zutil.c
zutil.h
CMakeLists.txt
COPYING.LIB
README
MaxmindDB
PUGIXML
SQLite
SimpleIni
SimpleSocket
TinyDir
Whirlpool
CMakeLists.txt
CMakeLists.txt
Core.cpp
Core.hpp
Logger.cpp
Logger.hpp
Main.cpp
Register.cpp
SqBase.hpp
sdk
sqrat
squirrel
vcmp
.gitignore
CMakeLists.txt
LICENSE
README.md
50 lines
1.8 KiB
Plaintext
50 lines
1.8 KiB
Plaintext
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
|