aboutsummaryrefslogtreecommitdiff
path: root/include/parser.h
diff options
context:
space:
mode:
authorCharles Cabergs <me@cacharle.xyz>2020-08-27 09:29:42 +0200
committerCharles Cabergs <me@cacharle.xyz>2020-08-27 09:29:42 +0200
commit454d439575489934791c04329df6e82e56dabf54 (patch)
tree3beaa9ec4eec1e95898d26d77f88cceaff5978d9 /include/parser.h
parentcde465358750ef03b66655edcbef468a4a2f210b (diff)
downloadminishell-454d439575489934791c04329df6e82e56dabf54.tar.gz
minishell-454d439575489934791c04329df6e82e56dabf54.tar.bz2
minishell-454d439575489934791c04329df6e82e56dabf54.zip
Renaming e_token_tag -> e_tok
Diffstat (limited to 'include/parser.h')
-rw-r--r--include/parser.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/parser.h b/include/parser.h
index 0bdc679..d228dca 100644
--- a/include/parser.h
+++ b/include/parser.h
@@ -52,8 +52,8 @@ t_ftlst *push_token(t_ftlst **tokens, t_token *pushed);
t_ast *push_cmd(t_ast *ast, t_ftlst *ret);
t_ast *push_redir(t_ast *ast, t_ftlst *rest);
-int parse_cmd_str_true_false(enum e_token_tag tag);
-int parse_redir_true_false(enum e_token_tag tag);
+int parse_cmd_str_true_false(enum e_tok tag);
+int parse_redir_true_false(enum e_tok tag);
// error
t_token *error_syntax_simple(t_ftlst *in);