ZSTD_isError method

int ZSTD_isError(
  1. int code
)

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 code,
    ) {
  return _ZSTD_isError(
    code,
  );
}