#[no_mangle]
pub unsafe extern "C" fn tectonic_flate_decompress_chunk(
    handle: *mut c_void,
    output_ptr: *mut u8,
    output_len: *mut u64
) -> c_int
Expand description

Decompress some DEFLATEd data.

After calling this function, the input_len parameter is rewritten with the total number of bytes of compressed data that have been read. The output_len parameter is rewritten with the total number of bytes of decompressed data that have been written.

Returns nonzero on error.

Safety

This is a C API function, so it is unsafe.