ZSTD_CCtx_reset method

int ZSTD_CCtx_reset(
  1. Pointer<ZSTD_CCtx> cctx,
  2. int reset
)

Implementation

int ZSTD_CCtx_reset(
  ffi.Pointer<ZSTD_CCtx> cctx,
  int reset,
) {
  return _ZSTD_CCtx_reset(
    cctx,
    reset,
  );
}