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 /infblock.c | |
| parent | e26a448e9673d67dc2866e11a48d24fc352e5f80 (diff) | |
| download | zlib-1.0.4.tar.gz zlib-1.0.4.tar.bz2 zlib-1.0.4.zip | |
zlib 1.0.4v1.0.4
Diffstat (limited to '')
| -rw-r--r-- | infblock.c | 8 |
1 files changed, 4 insertions, 4 deletions
| @@ -63,7 +63,7 @@ local uInt border[] = { /* Order of the bit length code lengths */ | |||
| 63 | 63 | ||
| 64 | void inflate_blocks_reset(s, z, c) | 64 | void inflate_blocks_reset(s, z, c) |
| 65 | inflate_blocks_statef *s; | 65 | inflate_blocks_statef *s; |
| 66 | z_stream *z; | 66 | z_streamp z; |
| 67 | uLongf *c; | 67 | uLongf *c; |
| 68 | { | 68 | { |
| 69 | if (s->checkfn != Z_NULL) | 69 | if (s->checkfn != Z_NULL) |
| @@ -87,7 +87,7 @@ uLongf *c; | |||
| 87 | 87 | ||
| 88 | 88 | ||
| 89 | inflate_blocks_statef *inflate_blocks_new(z, c, w) | 89 | inflate_blocks_statef *inflate_blocks_new(z, c, w) |
| 90 | z_stream *z; | 90 | z_streamp z; |
| 91 | check_func c; | 91 | check_func c; |
| 92 | uInt w; | 92 | uInt w; |
| 93 | { | 93 | { |
| @@ -115,7 +115,7 @@ uInt w; | |||
| 115 | #endif | 115 | #endif |
| 116 | int inflate_blocks(s, z, r) | 116 | int inflate_blocks(s, z, r) |
| 117 | inflate_blocks_statef *s; | 117 | inflate_blocks_statef *s; |
| 118 | z_stream *z; | 118 | z_streamp z; |
| 119 | int r; | 119 | int r; |
| 120 | { | 120 | { |
| 121 | uInt t; /* temporary storage */ | 121 | uInt t; /* temporary storage */ |
| @@ -381,7 +381,7 @@ int r; | |||
| 381 | 381 | ||
| 382 | int inflate_blocks_free(s, z, c) | 382 | int inflate_blocks_free(s, z, c) |
| 383 | inflate_blocks_statef *s; | 383 | inflate_blocks_statef *s; |
| 384 | z_stream *z; | 384 | z_streamp z; |
| 385 | uLongf *c; | 385 | uLongf *c; |
| 386 | { | 386 | { |
| 387 | inflate_blocks_reset(s, z, c); | 387 | inflate_blocks_reset(s, z, c); |
