ZSTD_decompressDCtx method
! 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,
);
}