diff options
author | Mark Adler <madler@alumni.caltech.edu> | 2011-09-09 23:17:02 -0700 |
---|---|---|
committer | Mark Adler <madler@alumni.caltech.edu> | 2011-09-09 23:17:02 -0700 |
commit | ff11b0a61f7345572ff2e413173d3179486162f2 (patch) | |
tree | f3c9e2563c4f0ac6684a0012ad48423d4c6aa798 /infcodes.h | |
parent | e26a448e9673d67dc2866e11a48d24fc352e5f80 (diff) | |
download | zlib-ff11b0a61f7345572ff2e413173d3179486162f2.tar.gz zlib-ff11b0a61f7345572ff2e413173d3179486162f2.tar.bz2 zlib-ff11b0a61f7345572ff2e413173d3179486162f2.zip |
zlib 1.0.4v1.0.4
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 | ||