#[export_name = "inflateBackEnd"]
pub unsafe extern "C-unwind" fn inflateBackEnd(
_strm: z_streamp,
) -> c_int
Expand description
Deallocates all dynamically allocated data structures for this stream.
This function discards any unprocessed input and does not flush any pending output.
§Returns
Z_OK
if successZ_STREAM_ERROR
if the stream state was inconsistent
§Safety
The caller must guarantee that
- Either
strm
isNULL
strm
satisfies the requirements of&mut *strm
and was initialized withinflateBackInit_