FSE_compress_usingCTable

Function FSE_compress_usingCTable 

Source
pub unsafe extern "C" fn FSE_compress_usingCTable(
    dst: *mut c_void,
    dstCapacity: usize,
    src: *const c_void,
    srcSize: usize,
    ct: *const FSE_CTable,
) -> usize
Expand description

FSE_compress_usingCTable(): Compress src using ct into dst which must be already allocated. @return : size of compressed data (<= dstCapacity), or 0 if compressed data could not fit into dst, or an errorCode, which can be tested using FSE_isError()