summaryrefslogtreecommitdiff
path: root/infblock.h
diff options
context:
space:
mode:
Diffstat (limited to 'infblock.h')
-rw-r--r--infblock.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/infblock.h b/infblock.h
index a21d730..4a9e0e2 100644
--- a/infblock.h
+++ b/infblock.h
@@ -11,9 +11,9 @@
11struct inflate_blocks_state; 11struct inflate_blocks_state;
12 12
13extern struct inflate_blocks_state * inflate_blocks_new __P(( 13extern struct inflate_blocks_state * inflate_blocks_new __P((
14 z_stream *, 14 z_stream *z,
15 check_func checkfn, /* check function */ 15 check_func c, /* check function */
16 uInt)); /* window size */ 16 uInt w)); /* window size */
17 17
18extern int inflate_blocks __P(( 18extern int inflate_blocks __P((
19 struct inflate_blocks_state *, 19 struct inflate_blocks_state *,
@@ -23,5 +23,4 @@ extern int inflate_blocks __P((
23extern int inflate_blocks_free __P(( 23extern int inflate_blocks_free __P((
24 struct inflate_blocks_state *, 24 struct inflate_blocks_state *,
25 z_stream *, 25 z_stream *,
26 uLong *, /* check value on output */ 26 uLong *)); /* check value on output */
27 int *)); /* possible leftover byte to return */