ZSTD_decompressDCtx method

int ZSTD_decompressDCtx(
  1. Pointer<ZSTD_DCtx> dctx,
  2. Pointer<Void> dst,
  3. int dstCapacity,
  4. Pointer<Void> src,
  5. int srcSize,
)

! ZSTD_decompressDCtx() : Same as ZSTD_decompress(), requires an allocated ZSTD_DCtx. Compatible with sticky parameters (see below).

Implementation

int ZSTD_decompressDCtx(
  ffi.Pointer<ZSTD_DCtx> dctx,
  ffi.Pointer<ffi.Void> dst,
  int dstCapacity,
  ffi.Pointer<ffi.Void> src,
  int srcSize,
) {
  return _ZSTD_decompressDCtx(
    dctx,
    dst,
    dstCapacity,
    src,
    srcSize,
  );
}