ZSTD_decompress method

int ZSTD_decompress(
  1. Pointer<Void> dst,
  2. int dstCapacity,
  3. Pointer<Void> src,
  4. int compressedSize,
)

Implementation

int ZSTD_decompress(
  ffi.Pointer<ffi.Void> dst,
  int dstCapacity,
  ffi.Pointer<ffi.Void> src,
  int compressedSize,
) {
  return _ZSTD_decompress(
    dst,
    dstCapacity,
    src,
    compressedSize,
  );
}