blob: a4f4ae3966168fd898d10680c3f57dee388dc499 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef CONSTS_H
#define CONSTS_H
enum ErrCode {
SYN_ERR_NOT_AN_ID,
SYN_ERR_CAN_NOT_APPLY,
SYN_ERR_ID_EXPECTED,
SYN_ERR_UNBOUND_VAR
};
extern const char *SYN_ERR_MSG[];
#endif
|