simworld/common/include/error.h

20 lines
272 B
C

#ifndef ERROR_H
#define ERROR_H
enum error_t {
ERR_OK,
ERR_INPUT,
ERR_ALLOC,
ERR_NOTFOUND,
ERR_FORK,
ERR_SETSID,
ERR_SOCKET,
ERR_JSON_SERIALISE,
ERR_JSON_DESERIALISE,
__ERR_COUNT,
};
extern char const *const ERROR_STRS[];
#endif