ZSTD_CCtx_refCDict method

int ZSTD_CCtx_refCDict(
  1. Pointer<ZSTD_CCtx> cctx,
  2. Pointer<ZSTD_CDict> cdict
)

Implementation

int ZSTD_CCtx_refCDict(
  ffi.Pointer<ZSTD_CCtx> cctx,
  ffi.Pointer<ZSTD_CDict> cdict,
) {
  return _ZSTD_CCtx_refCDict(
    cctx,
    cdict,
  );
}