9 lines
156 B
C
9 lines
156 B
C
#ifndef ERRCODES_H
|
|
#define ERRCODES_H
|
|
|
|
#define ERR_HELP 101
|
|
#define ERR_OPT 102
|
|
#define ERR_PARSE 103
|
|
#define ERR_RUNTIME 104
|
|
|
|
#endif //ERRCODES_H
|