ZSTD_compress2 method
Implementation
int ZSTD_compress2(
ffi.Pointer<ZSTD_CCtx> cctx,
ffi.Pointer<ffi.Void> dst,
int dstCapacity,
ffi.Pointer<ffi.Void> src,
int srcSize,
) {
return _ZSTD_compress2(
cctx,
dst,
dstCapacity,
src,
srcSize,
);
}