ZSTD_getDictID_fromDDict method

int ZSTD_getDictID_fromDDict(
  1. Pointer<ZSTD_DDict> ddict
)

! ZSTD_getDictID_fromDDict() : Requires v1.4.0+ Provides the dictID of the dictionary loaded into ddict. If @return == 0, the dictionary is not conformant to Zstandard specification, or empty. Non-conformant dictionaries can still be loaded, but as content-only dictionaries.

Implementation

int ZSTD_getDictID_fromDDict(
  ffi.Pointer<ZSTD_DDict> ddict,
) {
  return _ZSTD_getDictID_fromDDict(
    ddict,
  );
}