Function ZSTD_initCStream
pub unsafe extern "C" fn ZSTD_initCStream(zcs: *mut ZSTD_CStream, compressionLevel: c_int) -> usize
Equivalent to:
ZSTD_CCtx_reset;
ZSTD_CCtx_refCDict; // clear the dictionary (if any)
ZSTD_CCtx_setParameter;
Note that ZSTD_initCStream() clears any previously set dictionary. Use the new API to compress with a dictionary.