diff options
Diffstat (limited to 'deflate.h')
| -rw-r--r-- | deflate.h | 22 |
1 files changed, 11 insertions, 11 deletions
| @@ -290,13 +290,13 @@ typedef struct internal_state { | |||
| 290 | memory checker errors from longest match routines */ | 290 | memory checker errors from longest match routines */ |
| 291 | 291 | ||
| 292 | /* in trees.c */ | 292 | /* in trees.c */ |
| 293 | void _tr_init OF((deflate_state *s)); | 293 | void ZLIB_INTERNAL _tr_init OF((deflate_state *s)); |
| 294 | int _tr_tally OF((deflate_state *s, unsigned dist, unsigned lc)); | 294 | int ZLIB_INTERNAL _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 ZLIB_INTERNAL _tr_flush_block OF((deflate_state *s, charf *buf, |
| 296 | int last)); | 296 | ulg stored_len, int last)); |
| 297 | void _tr_align OF((deflate_state *s)); | 297 | void ZLIB_INTERNAL _tr_align OF((deflate_state *s)); |
| 298 | void _tr_stored_block OF((deflate_state *s, charf *buf, ulg stored_len, | 298 | void ZLIB_INTERNAL _tr_stored_block OF((deflate_state *s, charf *buf, |
| 299 | int last)); | 299 | ulg stored_len, 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)]) |
| @@ -309,11 +309,11 @@ void _tr_stored_block OF((deflate_state *s, charf *buf, ulg stored_len, | |||
| 309 | /* Inline versions of _tr_tally for speed: */ | 309 | /* Inline versions of _tr_tally for speed: */ |
| 310 | 310 | ||
| 311 | #if defined(GEN_TREES_H) || !defined(STDC) | 311 | #if defined(GEN_TREES_H) || !defined(STDC) |
| 312 | extern uch _length_code[]; | 312 | extern uch ZLIB_INTERNAL _length_code[]; |
| 313 | extern uch _dist_code[]; | 313 | extern uch ZLIB_INTERNAL _dist_code[]; |
| 314 | #else | 314 | #else |
| 315 | extern const uch _length_code[]; | 315 | extern const uch ZLIB_INTERNAL _length_code[]; |
| 316 | extern const uch _dist_code[]; | 316 | extern const uch ZLIB_INTERNAL _dist_code[]; |
| 317 | #endif | 317 | #endif |
| 318 | 318 | ||
| 319 | # define _tr_tally_lit(s, c, flush) \ | 319 | # define _tr_tally_lit(s, c, flush) \ |
