aboutsummaryrefslogtreecommitdiff
path: root/consts.h
diff options
context:
space:
mode:
authorTeddy <ted.sybil@gmail.com>2013-08-06 12:58:21 +0800
committerTeddy <ted.sybil@gmail.com>2013-08-06 12:58:21 +0800
commit033b938b22c7947992195e380fb2f7d1ca200f05 (patch)
treefd6628c9f376ee289d7bd6621fe4b8fc3d717ce4 /consts.h
parent9e76d377dad809f4aa3faa700883dbfc9b2fa769 (diff)
boolean and char are now supported
Diffstat (limited to 'consts.h')
-rw-r--r--consts.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/consts.h b/consts.h
index cf07edb..4bfd6b7 100644
--- a/consts.h
+++ b/consts.h
@@ -12,7 +12,8 @@ enum ErrCode {
READ_ERR_UNEXPECTED_RIGHT_BRACKET,
RUN_ERR_WRONG_TYPE,
INT_ERR,
- PAR_ERR_ILLEGAL_CHAR_IN_ESC
+ PAR_ERR_ILLEGAL_CHAR_IN_ESC,
+ RUN_ERR_UNKNOWN_CHAR_NAME
};
extern const char *ERR_MSG[];