aboutsummaryrefslogtreecommitdiff
path: root/zlib.h
diff options
context:
space:
mode:
Diffstat (limited to 'zlib.h')
-rw-r--r--zlib.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/zlib.h b/zlib.h
index 1712209..00a4394 100644
--- a/zlib.h
+++ b/zlib.h
@@ -1,5 +1,5 @@
1/* zlib.h -- interface of the 'zlib' general purpose compression library 1/* zlib.h -- interface of the 'zlib' general purpose compression library
2 version 0.91 May 2nd, 1995. 2 version 0.92 May 3rd, 1995.
3 3
4 Copyright (C) 1995 Jean-loup Gailly and Mark Adler 4 Copyright (C) 1995 Jean-loup Gailly and Mark Adler
5 5
@@ -28,7 +28,7 @@
28 28
29#include "zconf.h" 29#include "zconf.h"
30 30
31#define ZLIB_VERSION "0.91" 31#define ZLIB_VERSION "0.92"
32 32
33/* 33/*
34 The 'zlib' compression library provides in-memory compression and 34 The 'zlib' compression library provides in-memory compression and
@@ -103,7 +103,7 @@ typedef struct z_stream_s {
103 a single step). 103 a single step).
104*/ 104*/
105 105
106 /* constants */ 106 /* constants */
107 107
108#define Z_NO_FLUSH 0 108#define Z_NO_FLUSH 0
109#define Z_PARTIAL_FLUSH 1 109#define Z_PARTIAL_FLUSH 1
@@ -142,7 +142,7 @@ extern char *zlib_version;
142 not compatible with the zlib.h header file used by the application. 142 not compatible with the zlib.h header file used by the application.
143 */ 143 */
144 144
145 /* basic functions */ 145 /* basic functions */
146 146
147extern int deflateInit __P((z_stream *strm, int level)); 147extern int deflateInit __P((z_stream *strm, int level));
148/* 148/*
@@ -313,8 +313,8 @@ extern int inflateEnd __P((z_stream *strm));
313*/ 313*/
314 314
315extern int deflateInit2 __P((z_stream *strm, 315extern int deflateInit2 __P((z_stream *strm,
316 int level, 316 int level,
317 int method, 317 int method,
318 int windowBits, 318 int windowBits,
319 int memLevel, 319 int memLevel,
320 int strategy)); 320 int strategy));