aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2020-06-17 20:47:59 +0200
committerCharles <sircharlesaze@gmail.com>2020-06-17 20:47:59 +0200
commit9a11d78abf7dc8fb8c8f3430538e80622a7854d3 (patch)
treed264539823b52d4aa6f38f06b47d67bd3d5e9c97 /include
parentae510a886b202926b4a5502de02a938054844ad4 (diff)
downloadminishell-9a11d78abf7dc8fb8c8f3430538e80622a7854d3.tar.gz
minishell-9a11d78abf7dc8fb8c8f3430538e80622a7854d3.tar.bz2
minishell-9a11d78abf7dc8fb8c8f3430538e80622a7854d3.zip
Show nass the power of parser combinator
Diffstat (limited to 'include')
-rw-r--r--include/lexer.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/lexer.h b/include/lexer.h
index b0e7f65..43c3821 100644
--- a/include/lexer.h
+++ b/include/lexer.h
@@ -24,6 +24,7 @@ enum e_token_tag
TAG_IS_STR = TAG_STR | TAG_STR_SINGLE | TAG_STR_DOUBLE,
TAG_IS_REDIR = TAG_REDIR_IN | TAG_REDIR_OUT | TAG_REDIR_APPEND,
+ TAG_IS_SEP = TAG_AND | TAG_END | TAG_OR | TAG_PIPE,
};
typedef struct