예제 #1
0
/*! ZSTD_getErrorString() :
*   provides error code string from enum */
const char* ZSTD_getErrorString(ZSTD_ErrorCode code) { return ERR_getErrorName(code); }
예제 #2
0
파일: zdict.c 프로젝트: TrianglesPCT/zstd
const char* ZDICT_getErrorName(size_t errorCode) { return ERR_getErrorName(errorCode); }
예제 #3
0
/*! ZSTD_getErrorName() :
*   provides error code string from function result (useful for debugging) */
const char* ZSTD_getErrorName(size_t code) { return ERR_getErrorName(code); }