From f08325f76ba4aac15dc3125b7779045956863a4b Mon Sep 17 00:00:00 2001 From: Charles Date: Fri, 12 Jun 2020 09:05:28 +0200 Subject: Added preprocess escape with backslash, sticky str merge, travis CI before merge --- include/lexer.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'include/lexer.h') diff --git a/include/lexer.h b/include/lexer.h index 9377807..c56244f 100644 --- a/include/lexer.h +++ b/include/lexer.h @@ -4,9 +4,10 @@ ////////////////////////////////////// enum e_token_tag { - LTAG_STR, - LTAG_STR_SINGLE, - LTAG_STR_DOUBLE, + LTAG_STR = 1 << 0, + LTAG_STR_SINGLE = 1 << 1, + LTAG_STR_DOUBLE = 1 << 2, + LTAG_STICK = 1 << 3, }; typedef struct -- cgit