=========================================================================== * Flush the bits in the bit buffer to pending output (leaves at most 7 bits) */
(s)
| 884 | * Flush the bits in the bit buffer to pending output (leaves at most 7 bits) |
| 885 | */ |
| 886 | void ZLIB_INTERNAL _tr_flush_bits(s) |
| 887 | deflate_state *s; |
| 888 | { |
| 889 | bi_flush(s); |
| 890 | } |
| 891 | |
| 892 | /* =========================================================================== |
| 893 | * Send one empty static block to give enough lookahead for inflate. |
no test coverage detected