#[export_name = "inflateBackEnd"]
pub unsafe extern "C-unwind" fn inflateBackEnd(
_strm: z_streamp,
) -> c_intExpand 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_OKif successZ_STREAM_ERRORif the stream state was inconsistent
§Safety
The caller must guarantee that
- Either
strmisNULLstrmsatisfies the requirements of&mut *strmand was initialized withinflateBackInit_