summaryrefslogtreecommitdiff
path: root/infback.c
diff options
context:
space:
mode:
Diffstat (limited to 'infback.c')
-rw-r--r--infback.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/infback.c b/infback.c
index 262f97c..005ddec 100644
--- a/infback.c
+++ b/infback.c
@@ -1,5 +1,5 @@
1/* infback.c -- inflate using a call-back interface 1/* infback.c -- inflate using a call-back interface
2 * Copyright (C) 1995-2003 Mark Adler 2 * Copyright (C) 1995-2004 Mark Adler
3 * For conditions of distribution and use, see copyright notice in zlib.h 3 * For conditions of distribution and use, see copyright notice in zlib.h
4 */ 4 */
5 5
@@ -26,7 +26,7 @@ local void fixedtables OF((struct inflate_state FAR *state));
26 window and output buffer that is 2**windowBits bytes. 26 window and output buffer that is 2**windowBits bytes.
27 */ 27 */
28int ZEXPORT inflateBackInit_(strm, windowBits, window, version, stream_size) 28int ZEXPORT inflateBackInit_(strm, windowBits, window, version, stream_size)
29z_stream FAR *strm; 29z_streamp strm;
30int windowBits; 30int windowBits;
31unsigned char FAR *window; 31unsigned char FAR *window;
32const char *version; 32const char *version;
@@ -238,7 +238,7 @@ struct inflate_state FAR *state;
238 are not correct, i.e. strm is Z_NULL or the state was not initialized. 238 are not correct, i.e. strm is Z_NULL or the state was not initialized.
239 */ 239 */
240int ZEXPORT inflateBack(strm, in, in_desc, out, out_desc) 240int ZEXPORT inflateBack(strm, in, in_desc, out, out_desc)
241z_stream FAR *strm; 241z_streamp strm;
242in_func in; 242in_func in;
243void FAR *in_desc; 243void FAR *in_desc;
244out_func out; 244out_func out;
@@ -611,7 +611,7 @@ void FAR *out_desc;
611} 611}
612 612
613int ZEXPORT inflateBackEnd(strm) 613int ZEXPORT inflateBackEnd(strm)
614z_stream FAR *strm; 614z_streamp strm;
615{ 615{
616 if (strm == Z_NULL || strm->state == Z_NULL || strm->zfree == (free_func)0) 616 if (strm == Z_NULL || strm->state == Z_NULL || strm->zfree == (free_func)0)
617 return Z_STREAM_ERROR; 617 return Z_STREAM_ERROR;