=========================================================================== * Flush the bits in the bit buffer to pending output (leaves at most 7 bits) */
(s)
| 951 | * Flush the bits in the bit buffer to pending output (leaves at most 7 bits) |
| 952 | */ |
| 953 | void ZLIB_INTERNAL _tr_flush_bits(s) |
| 954 | |
| 955 | deflate_state* s; |
| 956 | { |
| 957 | bi_flush(s); |
| 958 | } |
| 959 | |
| 960 | /* =========================================================================== |
| 961 | * Send one empty static block to give enough lookahead for inflate. |
no test coverage detected