ZSTD_DCtx_loadDictionary method

int ZSTD_DCtx_loadDictionary(
  1. Pointer<ZSTD_DCtx> dctx,
  2. Pointer<Void> dict,
  3. int dictSize
)

Implementation

int ZSTD_DCtx_loadDictionary(
  ffi.Pointer<ZSTD_DCtx> dctx,
  ffi.Pointer<ffi.Void> dict,
  int dictSize,
) {
  return _ZSTD_DCtx_loadDictionary(
    dctx,
    dict,
    dictSize,
  );
}