diff options
author | Mark Adler <madler@alumni.caltech.edu> | 2011-09-09 23:32:36 -0700 |
---|---|---|
committer | Mark Adler <madler@alumni.caltech.edu> | 2011-09-09 23:32:36 -0700 |
commit | 67cc20d0041a32bee12bd9eb20ae218f91b73f77 (patch) | |
tree | d7e1b94bd15c30efd57cf9036f5fe89306b6bba0 /deflate.h | |
parent | 7751bd4c715ea8478113e34b49b5a794a4642e8e (diff) | |
download | zlib-67cc20d0041a32bee12bd9eb20ae218f91b73f77.tar.gz zlib-67cc20d0041a32bee12bd9eb20ae218f91b73f77.tar.bz2 zlib-67cc20d0041a32bee12bd9eb20ae218f91b73f77.zip |
zlib 1.2.4-pre1v1.2.4-pre1
Diffstat (limited to 'deflate.h')
-rw-r--r-- | deflate.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -293,10 +293,10 @@ typedef struct internal_state { | |||
293 | void _tr_init OF((deflate_state *s)); | 293 | void _tr_init OF((deflate_state *s)); |
294 | int _tr_tally OF((deflate_state *s, unsigned dist, unsigned lc)); | 294 | int _tr_tally OF((deflate_state *s, unsigned dist, unsigned lc)); |
295 | void _tr_flush_block OF((deflate_state *s, charf *buf, ulg stored_len, | 295 | void _tr_flush_block OF((deflate_state *s, charf *buf, ulg stored_len, |
296 | int eof)); | 296 | int last)); |
297 | void _tr_align OF((deflate_state *s)); | 297 | void _tr_align OF((deflate_state *s)); |
298 | void _tr_stored_block OF((deflate_state *s, charf *buf, ulg stored_len, | 298 | void _tr_stored_block OF((deflate_state *s, charf *buf, ulg stored_len, |
299 | int eof)); | 299 | int last)); |
300 | 300 | ||
301 | #define d_code(dist) \ | 301 | #define d_code(dist) \ |
302 | ((dist) < 256 ? _dist_code[dist] : _dist_code[256+((dist)>>7)]) | 302 | ((dist) < 256 ? _dist_code[dist] : _dist_code[256+((dist)>>7)]) |