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 /inftrees.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 'inftrees.h')
-rw-r--r-- | inftrees.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -35,7 +35,7 @@ extern int inflate_trees_bits OF(( | |||
35 | uIntf *, /* 19 code lengths */ | 35 | uIntf *, /* 19 code lengths */ |
36 | uIntf *, /* bits tree desired/actual depth */ | 36 | uIntf *, /* bits tree desired/actual depth */ |
37 | inflate_huft * FAR *, /* bits tree result */ | 37 | inflate_huft * FAR *, /* bits tree result */ |
38 | z_stream *)); /* for zalloc, zfree functions */ | 38 | z_streamp )); /* for zalloc, zfree functions */ |
39 | 39 | ||
40 | extern int inflate_trees_dynamic OF(( | 40 | extern int inflate_trees_dynamic OF(( |
41 | uInt, /* number of literal/length codes */ | 41 | uInt, /* number of literal/length codes */ |
@@ -45,7 +45,7 @@ extern int inflate_trees_dynamic OF(( | |||
45 | uIntf *, /* distance desired/actual bit depth */ | 45 | uIntf *, /* distance desired/actual bit depth */ |
46 | inflate_huft * FAR *, /* literal/length tree result */ | 46 | inflate_huft * FAR *, /* literal/length tree result */ |
47 | inflate_huft * FAR *, /* distance tree result */ | 47 | inflate_huft * FAR *, /* distance tree result */ |
48 | z_stream *)); /* for zalloc, zfree functions */ | 48 | z_streamp )); /* for zalloc, zfree functions */ |
49 | 49 | ||
50 | extern int inflate_trees_fixed OF(( | 50 | extern int inflate_trees_fixed OF(( |
51 | uIntf *, /* literal desired/actual bit depth */ | 51 | uIntf *, /* literal desired/actual bit depth */ |
@@ -55,5 +55,5 @@ extern int inflate_trees_fixed OF(( | |||
55 | 55 | ||
56 | extern int inflate_trees_free OF(( | 56 | extern int inflate_trees_free OF(( |
57 | inflate_huft *, /* tables to free */ | 57 | inflate_huft *, /* tables to free */ |
58 | z_stream *)); /* for zfree function */ | 58 | z_streamp )); /* for zfree function */ |
59 | 59 | ||