Expand description
This module contains functionality for decompression.
Modules§
- Streaming decompression functionality.
- Extra streaming decompression functionality.
Enums§
- Return status codes.
Functions§
- Decompress the deflate-encoded data in
input
to a vector. - Decompress the deflate-encoded data in
input
to a vector. The vector is grown to at mostmax_size
bytes; if the data does not fit in that size,TINFLStatus::HasMoreOutput
error is returned. - Decompress the deflate-encoded data (with a zlib wrapper) in
input
to a vector. - Decompress the deflate-encoded data (with a zlib wrapper) in
input
to a vector. The vector is grown to at mostmax_size
bytes; if the data does not fit in that size,TINFLStatus::HasMoreOutput
error is returned.