summaryrefslogtreecommitdiff
path: root/zlib.h
diff options
context:
space:
mode:
Diffstat (limited to 'zlib.h')
-rw-r--r--zlib.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/zlib.h b/zlib.h
index 00a4394..d27173d 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.92 May 3rd, 1995. 2 version 0.93 June 25th, 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
@@ -20,7 +20,7 @@
20 3. This notice may not be removed or altered from any source distribution. 20 3. This notice may not be removed or altered from any source distribution.
21 21
22 Jean-loup Gailly Mark Adler 22 Jean-loup Gailly Mark Adler
23 gzip@prep.ai.mit.edu madler@cco.caltech.edu 23 gzip@prep.ai.mit.edu madler@alumni.caltech.edu
24 */ 24 */
25 25
26#ifndef _ZLIB_H 26#ifndef _ZLIB_H
@@ -28,7 +28,7 @@
28 28
29#include "zconf.h" 29#include "zconf.h"
30 30
31#define ZLIB_VERSION "0.92" 31#define ZLIB_VERSION "0.93"
32 32
33/* 33/*
34 The 'zlib' compression library provides in-memory compression and 34 The 'zlib' compression library provides in-memory compression and
@@ -108,6 +108,7 @@ typedef struct z_stream_s {
108#define Z_NO_FLUSH 0 108#define Z_NO_FLUSH 0
109#define Z_PARTIAL_FLUSH 1 109#define Z_PARTIAL_FLUSH 1
110#define Z_FULL_FLUSH 2 110#define Z_FULL_FLUSH 2
111#define Z_SYNC_FLUSH 3 /* experimental: partial_flush + byte align */
111#define Z_FINISH 4 112#define Z_FINISH 4
112/* See deflate() below for the usage of these constants */ 113/* See deflate() below for the usage of these constants */
113 114