mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Sam Roberts
912f78a566
|
8 years ago | |
---|---|---|
.. | ||
amiga | 10 years ago | |
contrib | 8 years ago | |
doc | 10 years ago | |
examples | 8 years ago | |
msdos | 8 years ago | |
nintendods | 10 years ago | |
old | 8 years ago | |
os400 | 8 years ago | |
qnx | 8 years ago | |
test | 8 years ago | |
watcom | 10 years ago | |
win32 | 8 years ago | |
CMakeLists.txt | 8 years ago | |
ChangeLog | 8 years ago | |
FAQ | 10 years ago | |
INDEX | 10 years ago | |
Makefile | 10 years ago | |
Makefile.in | 8 years ago | |
README | 8 years ago | |
adler32.c | 8 years ago | |
compress.c | 8 years ago | |
configure | 8 years ago | |
crc32.c | 8 years ago | |
crc32.h | 10 years ago | |
deflate.c | 8 years ago | |
deflate.h | 8 years ago | |
gzclose.c | 10 years ago | |
gzguts.h | 8 years ago | |
gzlib.c | 8 years ago | |
gzread.c | 8 years ago | |
gzwrite.c | 8 years ago | |
infback.c | 8 years ago | |
inffast.c | 8 years ago | |
inffast.h | 10 years ago | |
inffixed.h | 10 years ago | |
inflate.c | 8 years ago | |
inflate.h | 8 years ago | |
inftrees.c | 8 years ago | |
inftrees.h | 10 years ago | |
make_vms.com | 10 years ago | |
treebuild.xml | 8 years ago | |
trees.c | 8 years ago | |
trees.h | 10 years ago | |
uncompr.c | 8 years ago | |
zconf.h | 8 years ago | |
zconf.h.cmakein | 8 years ago | |
zconf.h.in | 8 years ago | |
zlib.3 | 8 years ago | |
zlib.3.pdf | 8 years ago | |
zlib.gyp | 8 years ago | |
zlib.h | 8 years ago | |
zlib.map | 8 years ago | |
zlib.pc.cmakein | 10 years ago | |
zlib.pc.in | 10 years ago | |
zlib2ansi | 10 years ago | |
zutil.c | 8 years ago | |
zutil.h | 8 years ago |
README
ZLIB DATA COMPRESSION LIBRARY
zlib 1.2.11 is a general purpose data compression library. All the code is
thread safe. The data format used by the zlib library is described by RFCs
(Request for Comments) 1950 to 1952 in the files
http://tools.ietf.org/html/rfc1950 (zlib format), rfc1951 (deflate format) and
rfc1952 (gzip format).
All functions of the compression library are documented in the file zlib.h
(volunteer to write man pages welcome, contact zlib@gzip.org). A usage example
of the library is given in the file test/example.c which also tests that
the library is working correctly. Another example is given in the file
test/minigzip.c. The compression library itself is composed of all source
files in the root directory.
To compile all files and run the test program, follow the instructions given at
the top of Makefile.in. In short "./configure; make test", and if that goes
well, "make install" should work for most flavors of Unix. For Windows, use
one of the special makefiles in win32/ or contrib/