summaryrefslogtreecommitdiff
path: root/infcodes.h
diff options
context:
space:
mode:
Diffstat (limited to 'infcodes.h')
-rw-r--r--infcodes.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/infcodes.h b/infcodes.h
index af99cd1..a772e42 100644
--- a/infcodes.h
+++ b/infcodes.h
@@ -9,17 +9,19 @@
9 */ 9 */
10 10
11struct inflate_codes_state; 11struct inflate_codes_state;
12typedef struct inflate_codes_state FAR inflate_codes_statef;
12 13
13extern struct inflate_codes_state *inflate_codes_new __P(( 14extern inflate_codes_statef *inflate_codes_new OF((
14 uInt, uInt, 15 uInt, uInt,
15 inflate_huft *, inflate_huft *, 16 inflate_huft *, inflate_huft *,
16 z_stream *)); 17 z_stream *));
17 18
18extern int inflate_codes __P(( 19extern int inflate_codes OF((
19 struct inflate_blocks_state *, 20 inflate_blocks_statef *,
20 z_stream *, 21 z_stream *,
21 int)); 22 int));
22 23
23extern void inflate_codes_free __P(( 24extern void inflate_codes_free OF((
24 struct inflate_codes_state *, 25 inflate_codes_statef *,
25 z_stream *)); 26 z_stream *));
27