diff options
author | Mark Adler <madler@alumni.caltech.edu> | 2011-09-09 23:09:18 -0700 |
---|---|---|
committer | Mark Adler <madler@alumni.caltech.edu> | 2011-09-09 23:09:18 -0700 |
commit | 23c69f10698301ae97709eb0bbfb371d66b99a08 (patch) | |
tree | 1956b671b3df8d12c315a38f33b190677ccd659e /infcodes.h | |
parent | 6b834a58bdef976383cff6e2a83f353e668a9cf1 (diff) | |
download | zlib-c4e9febefd0e63c0767a26608955ffa9fb6800d4.tar.gz zlib-c4e9febefd0e63c0767a26608955ffa9fb6800d4.tar.bz2 zlib-c4e9febefd0e63c0767a26608955ffa9fb6800d4.zip |
zlib 0.94v0.94
Diffstat (limited to 'infcodes.h')
-rw-r--r-- | infcodes.h | 12 |
1 files changed, 7 insertions, 5 deletions
@@ -9,17 +9,19 @@ | |||
9 | */ | 9 | */ |
10 | 10 | ||
11 | struct inflate_codes_state; | 11 | struct inflate_codes_state; |
12 | typedef struct inflate_codes_state FAR inflate_codes_statef; | ||
12 | 13 | ||
13 | extern struct inflate_codes_state *inflate_codes_new __P(( | 14 | extern 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 | ||
18 | extern int inflate_codes __P(( | 19 | extern 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 | ||
23 | extern void inflate_codes_free __P(( | 24 | extern void inflate_codes_free OF(( |
24 | struct inflate_codes_state *, | 25 | inflate_codes_statef *, |
25 | z_stream *)); | 26 | z_stream *)); |
27 | |||