Function ZSTD_initCStream
unsafe extern C { unwind: false } 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.