summaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
Diffstat (limited to 'README')
-rw-r--r--README19
1 files changed, 8 insertions, 11 deletions
diff --git a/README b/README
index a8d5788..0c718f1 100644
--- a/README
+++ b/README
@@ -1,6 +1,4 @@
1zlib 0.8 is a beta version of a general purpose compression library. 1zlib 0.9 is a beta version of a general purpose compression library.
2This is the first version with no known bugs. (There may still be
3problem on SGI, to be checked.)
4 2
5The data format used by the zlib library is described in the 3The data format used by the zlib library is described in the
6file zlib-3.1.doc, deflate-1.1.doc and gzip-4.1.doc, available 4file zlib-3.1.doc, deflate-1.1.doc and gzip-4.1.doc, available
@@ -11,18 +9,17 @@ zlib.h. A usage example of the library is given in the file example.c
11which also tests that the library is working correctly. 9which also tests that the library is working correctly.
12To compile all files and run the test program, just type: make test 10To compile all files and run the test program, just type: make test
13 11
14The changes made in version 0.8 are documented in the file ChangeLog. 12The changes made in version 0.9 are documented in the file ChangeLog.
15The main changes since 0.71 are: 13The main changes since 0.8 are:
16- added fast inflate (inffast.c) 14- don't assume that zalloc clears the allocated memory
17- deflate(Z_FINISH) now returns Z_STREAM_END when done. Warning: this 15- let again gzread copy uncompressed data unchanged (was working in 0.71)
18 is incompatible with previous versions of zlib which returned Z_OK. 16- deflate(Z_FULL_FLUSH), inflateReset and inflateSync are now fully implemented
19- work around a nasty TurboC compiler bug
20 17
21On MSDOS, this version works in both large and small model. However 18On MSDOS, this version works in both large and small model. However
22small model compression works only for small values of MEM_LEVEL and 19small model compression works only for small values of MEM_LEVEL and
23WBITS (see zutil.h). Small model decompression should work up to WBITS=15. 20WBITS (see zutil.h). Small model decompression should work up to WBITS=15.
24This version of zlib does not yet support small or medium model with 21This version of zlib does not support small or medium model with far
25far allocation of big objects. 22allocation of big objects.
26 23
27 24
28 Copyright (C) 1995 Jean-loup Gailly and Mark Adler 25 Copyright (C) 1995 Jean-loup Gailly and Mark Adler