This commit is contained in:
gazhonsepaskwa
2025-02-14 10:13:23 +01:00
parent b43ff8fc26
commit 93b69e815f
7 changed files with 170 additions and 107 deletions

View File

@@ -21,6 +21,12 @@ t_ast_n *parser(char *input, t_msh *msh);
int unexpected_token(t_node *node);
int is_aop_operator(t_node *node);
int is_redir(t_node *cpy);
int is_basic_word(t_node *cpy);
int syntax_err_mess(char *token_base, int selected);
int check_unclosed(char *c, t_node *node);
int check_unclosed_quote(char *c, t_node *node);
void interpret_cmd(char **input, t_msh *msh);
void end_heredoc(char *buf, t_msh *msh, t_node *lst);
void exit_heredoc(char *limiter, t_msh *msh, t_node *lst);