diff options
Diffstat (limited to 'infback.c')
-rw-r--r-- | infback.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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 | */ |
28 | int ZEXPORT inflateBackInit_(strm, windowBits, window, version, stream_size) | 28 | int ZEXPORT inflateBackInit_(strm, windowBits, window, version, stream_size) |
29 | z_stream FAR *strm; | 29 | z_streamp strm; |
30 | int windowBits; | 30 | int windowBits; |
31 | unsigned char FAR *window; | 31 | unsigned char FAR *window; |
32 | const char *version; | 32 | const 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 | */ |
240 | int ZEXPORT inflateBack(strm, in, in_desc, out, out_desc) | 240 | int ZEXPORT inflateBack(strm, in, in_desc, out, out_desc) |
241 | z_stream FAR *strm; | 241 | z_streamp strm; |
242 | in_func in; | 242 | in_func in; |
243 | void FAR *in_desc; | 243 | void FAR *in_desc; |
244 | out_func out; | 244 | out_func out; |
@@ -611,7 +611,7 @@ void FAR *out_desc; | |||
611 | } | 611 | } |
612 | 612 | ||
613 | int ZEXPORT inflateBackEnd(strm) | 613 | int ZEXPORT inflateBackEnd(strm) |
614 | z_stream FAR *strm; | 614 | z_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; |