aboutsummaryrefslogtreecommitdiff
path: root/infblock.h
diff options
context:
space:
mode:
Diffstat (limited to 'infblock.h')
-rw-r--r--infblock.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/infblock.h b/infblock.h
index ee2c063..3ecd50c 100644
--- a/infblock.h
+++ b/infblock.h
@@ -12,23 +12,23 @@ struct inflate_blocks_state;
12typedef struct inflate_blocks_state FAR inflate_blocks_statef; 12typedef struct inflate_blocks_state FAR inflate_blocks_statef;
13 13
14extern inflate_blocks_statef * inflate_blocks_new OF(( 14extern 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
19extern int inflate_blocks OF(( 19extern 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
24extern void inflate_blocks_reset OF(( 24extern 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
29extern int inflate_blocks_free OF(( 29extern 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
34extern void inflate_set_dictionary OF(( 34extern void inflate_set_dictionary OF((