ZSTD_CCtx_refPrefix method

int ZSTD_CCtx_refPrefix(
  1. Pointer<ZSTD_CCtx> cctx,
  2. Pointer<Void> prefix,
  3. int prefixSize
)

Implementation

int ZSTD_CCtx_refPrefix(
  ffi.Pointer<ZSTD_CCtx> cctx,
  ffi.Pointer<ffi.Void> prefix,
  int prefixSize,
) {
  return _ZSTD_CCtx_refPrefix(
    cctx,
    prefix,
    prefixSize,
  );
}