ZSTD_CCtx_loadDictionary method

int ZSTD_CCtx_loadDictionary(
  1. Pointer<ZSTD_CCtx> cctx,
  2. Pointer<Void> dict,
  3. int dictSize
)

Implementation

int ZSTD_CCtx_loadDictionary(
  ffi.Pointer<ZSTD_CCtx> cctx,
  ffi.Pointer<ffi.Void> dict,
  int dictSize,
) {
  return _ZSTD_CCtx_loadDictionary(
    cctx,
    dict,
    dictSize,
  );
}