diff options
Diffstat (limited to 'infcodes.h')
-rw-r--r-- | infcodes.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -14,14 +14,14 @@ typedef struct inflate_codes_state FAR inflate_codes_statef; | |||
14 | extern inflate_codes_statef *inflate_codes_new OF(( | 14 | extern inflate_codes_statef *inflate_codes_new OF(( |
15 | uInt, uInt, | 15 | uInt, uInt, |
16 | inflate_huft *, inflate_huft *, | 16 | inflate_huft *, inflate_huft *, |
17 | z_stream *)); | 17 | z_streamp )); |
18 | 18 | ||
19 | extern int inflate_codes OF(( | 19 | extern int inflate_codes OF(( |
20 | inflate_blocks_statef *, | 20 | inflate_blocks_statef *, |
21 | z_stream *, | 21 | z_streamp , |
22 | int)); | 22 | int)); |
23 | 23 | ||
24 | extern void inflate_codes_free OF(( | 24 | extern void inflate_codes_free OF(( |
25 | inflate_codes_statef *, | 25 | inflate_codes_statef *, |
26 | z_stream *)); | 26 | z_streamp )); |
27 | 27 | ||