21 lines
1021 B
C
21 lines
1021 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* parsing.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: nalebrun <nalebrun@student.s19.be> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2025/01/24 14:45:28 by nalebrun #+# #+# */
|
|
/* Updated: 2025/01/24 14:45:28 by nalebrun ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef PARSING_H
|
|
# define PARSING_H
|
|
|
|
# include "../minishell.h"
|
|
|
|
t_ast_n *parser(char *input, char **envp, t_msh *msh);
|
|
|
|
#endif
|