ZSTD_compress2 method

int ZSTD_compress2(
  1. Pointer<ZSTD_CCtx> cctx,
  2. Pointer<Void> dst,
  3. int dstCapacity,
  4. Pointer<Void> src,
  5. int srcSize,
)

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,
  );
}