ZSTD_freeCDict method

int ZSTD_freeCDict(
  1. Pointer<ZSTD_CDict> CDict
)

! ZSTD_freeCDict() : Function frees memory allocated by ZSTD_createCDict(). If a NULL pointer is passed, no operation is performed.

Implementation

int ZSTD_freeCDict(
    ffi.Pointer<ZSTD_CDict> CDict,
    ) {
  return _ZSTD_freeCDict(
    CDict,
  );
}