diff options
author | Mark Adler <madler@alumni.caltech.edu> | 2024-07-01 19:24:01 -0500 |
---|---|---|
committer | Mark Adler <madler@alumni.caltech.edu> | 2024-07-01 19:34:40 -0500 |
commit | e011d8c164402cbb1baf92533dfb4f933ec08fee (patch) | |
tree | 7a28431c3c5caf885f07deac6718787b36f2231c /zlib.map | |
parent | 534864bccd78812648ad1beaccdeec7c9d47aeef (diff) | |
download | zlib-e011d8c164402cbb1baf92533dfb4f933ec08fee.tar.gz zlib-e011d8c164402cbb1baf92533dfb4f933ec08fee.tar.bz2 zlib-e011d8c164402cbb1baf92533dfb4f933ec08fee.zip |
Add deflateUsed() function to get the used bits in the last byte.
This returns the number of used bits in the last byte of a stream
that has just been compressed with deflate.
Diffstat (limited to 'zlib.map')
-rw-r--r-- | zlib.map | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -98,3 +98,7 @@ ZLIB_1.2.12 { | |||
98 | crc32_combine_gen64; | 98 | crc32_combine_gen64; |
99 | crc32_combine_op; | 99 | crc32_combine_op; |
100 | } ZLIB_1.2.9; | 100 | } ZLIB_1.2.9; |
101 | |||
102 | ZLIB_1.3.2 { | ||
103 | deflateUsed; | ||
104 | } ZLIB_1.2.12; \ No newline at end of file | ||