diff options
| author | Charles <sircharlesaze@gmail.com> | 2020-06-12 09:05:28 +0200 |
|---|---|---|
| committer | Charles <sircharlesaze@gmail.com> | 2020-06-12 12:00:27 +0200 |
| commit | f08325f76ba4aac15dc3125b7779045956863a4b (patch) | |
| tree | 2f6f022dc355c41985aab9e1c188a4e9582713b9 /include/lexer.h | |
| parent | 4e81fb861a79c9373b070176649bc0f4f8dfa850 (diff) | |
| download | minishell-f08325f76ba4aac15dc3125b7779045956863a4b.tar.gz minishell-f08325f76ba4aac15dc3125b7779045956863a4b.tar.bz2 minishell-f08325f76ba4aac15dc3125b7779045956863a4b.zip | |
Added preprocess escape with backslash, sticky str merge, travis CI before merge
Diffstat (limited to 'include/lexer.h')
| -rw-r--r-- | include/lexer.h | 7 |
1 files changed, 4 insertions, 3 deletions
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 |
