ZSTD_freeDDict method

int ZSTD_freeDDict(
  1. Pointer<ZSTD_DDict> ddict
)

! ZSTD_freeDDict() : Function frees memory allocated with ZSTD_createDDict() If a NULL pointer is passed, no operation is performed.

Implementation

int ZSTD_freeDDict(
  ffi.Pointer<ZSTD_DDict> ddict,
) {
  return _ZSTD_freeDDict(
    ddict,
  );
}