/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* parsing.h :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: nalebrun +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2025/01/24 14:45:28 by nalebrun #+# #+# */ /* Updated: 2025/02/11 16:45:11 by nalebrun ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef PARSING_H # define PARSING_H # include "../minishell.h" t_ast_n *parser(char *input, t_msh *msh); int unexpected_token(t_node *node); int is_aop_operator(t_node *node); void interpret_cmd(char **input, t_msh *msh); #endif