aboutsummaryrefslogtreecommitdiff
path: root/trees.c
diff options
context:
space:
mode:
Diffstat (limited to 'trees.c')
-rw-r--r--trees.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/trees.c b/trees.c
index d5e1a56..8c32b21 100644
--- a/trees.c
+++ b/trees.c
@@ -877,6 +877,15 @@ void ZLIB_INTERNAL _tr_stored_block(s, buf, stored_len, last)
877} 877}
878 878
879/* =========================================================================== 879/* ===========================================================================
880 * Flush the bits in the bit buffer to pending output (leaves at most 7 bits)
881 */
882void ZLIB_INTERNAL _tr_flush_bits(s)
883 deflate_state *s;
884{
885 bi_flush(s);
886}
887
888/* ===========================================================================
880 * Send one empty static block to give enough lookahead for inflate. 889 * Send one empty static block to give enough lookahead for inflate.
881 * This takes 10 bits, of which 7 may remain in the bit buffer. 890 * This takes 10 bits, of which 7 may remain in the bit buffer.
882 */ 891 */