]> git.lizzy.rs Git - zlib.git/blob - README
zlib 0.9
[zlib.git] / README
1 zlib 0.9 is a beta version of a general purpose compression library.
2
3 The data format used by the zlib library is described in the
4 file zlib-3.1.doc, deflate-1.1.doc and gzip-4.1.doc, available
5 in ftp.uu.net:/pub/archiving/zip/doc.
6
7 All functions of the compression library are documented in the file
8 zlib.h. A usage example of the library is given in the file example.c
9 which also tests that the library is working correctly.
10 To compile all files and run the test program, just type: make test
11
12 The changes made in version 0.9 are documented in the file ChangeLog.
13 The main changes since 0.8 are:
14 - don't assume that zalloc clears the allocated memory
15 - let again gzread copy uncompressed data unchanged (was working in 0.71)
16 - deflate(Z_FULL_FLUSH), inflateReset and inflateSync are now fully implemented
17
18 On MSDOS, this version works in both large and small model. However
19 small model compression works only for small values of MEM_LEVEL and
20 WBITS (see zutil.h). Small model decompression should work up to WBITS=15.
21 This version of zlib does not support small or medium model with far
22 allocation of big objects.
23
24
25   Copyright (C) 1995 Jean-loup Gailly and Mark Adler
26
27   This software is provided 'as-is', without any express or implied
28   warranty.  In no event will the authors be held liable for any damages
29   arising from the use of this software.
30
31   Permission is granted to anyone to use this software for any purpose,
32   including commercial applications, and to alter it and redistribute it
33   freely, subject to the following restrictions:
34
35   1. The origin of this software must not be misrepresented; you must not
36      claim that you wrote the original software. If you use this software
37      in a product, an acknowledgment in the product documentation would be
38      appreciated but is not required.
39   2. Altered source versions must be plainly marked as such, and must not be
40      misrepresented as being the original software.
41   3. This notice may not be removed or altered from any source distribution.
42
43   Jean-loup Gailly        Mark Adler
44   gzip@prep.ai.mit.edu    madler@cco.caltech.edu
45
46 If you use the zlib library in a product, we would appreciate *not*
47 receiving lengthy legal documents to sign. The sources are provided
48 for free but without warranty of any kind.  The library has been
49 entirely written by Jean-loup Gailly and Mark Adler; it does not
50 include third-party code.
51
52 If you redistribute modified sources, we would appreciate that you include
53 in the file ChangeLog history information documenting your changes.