diff options
Diffstat (limited to 'infblock.h')
-rw-r--r-- | infblock.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -12,23 +12,23 @@ struct inflate_blocks_state; | |||
12 | typedef struct inflate_blocks_state FAR inflate_blocks_statef; | 12 | typedef struct inflate_blocks_state FAR inflate_blocks_statef; |
13 | 13 | ||
14 | extern inflate_blocks_statef * inflate_blocks_new OF(( | 14 | extern inflate_blocks_statef * inflate_blocks_new OF(( |
15 | z_stream *z, | 15 | z_streamp z, |
16 | check_func c, /* check function */ | 16 | check_func c, /* check function */ |
17 | uInt w)); /* window size */ | 17 | uInt w)); /* window size */ |
18 | 18 | ||
19 | extern int inflate_blocks OF(( | 19 | extern int inflate_blocks OF(( |
20 | inflate_blocks_statef *, | 20 | inflate_blocks_statef *, |
21 | z_stream *, | 21 | z_streamp , |
22 | int)); /* initial return code */ | 22 | int)); /* initial return code */ |
23 | 23 | ||
24 | extern void inflate_blocks_reset OF(( | 24 | extern void inflate_blocks_reset OF(( |
25 | inflate_blocks_statef *, | 25 | inflate_blocks_statef *, |
26 | z_stream *, | 26 | z_streamp , |
27 | uLongf *)); /* check value on output */ | 27 | uLongf *)); /* check value on output */ |
28 | 28 | ||
29 | extern int inflate_blocks_free OF(( | 29 | extern int inflate_blocks_free OF(( |
30 | inflate_blocks_statef *, | 30 | inflate_blocks_statef *, |
31 | z_stream *, | 31 | z_streamp , |
32 | uLongf *)); /* check value on output */ | 32 | uLongf *)); /* check value on output */ |
33 | 33 | ||
34 | extern void inflate_set_dictionary OF(( | 34 | extern void inflate_set_dictionary OF(( |