ZSTD_isError method

int ZSTD_isError(
  1. int result
)

====== Error helper functions ======/ / ZSTD_isError() : Most ZSTD_* functions returning a size_t value can be tested for error, using ZSTD_isError(). @return 1 if error, 0 otherwise

Implementation

int ZSTD_isError(
  int result,
) {
  return _ZSTD_isError(
    result,
  );
}