simworld/src/error.h

15 lines
170 B
C
Raw Normal View History

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