From 5f908033e68f6f3e03f2c38f4c396a0eab77ed05 Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Sat, 10 Oct 2020 08:39:24 +0200 Subject: Norming lexer --- include/minishell.h | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'include/minishell.h') diff --git a/include/minishell.h b/include/minishell.h index 4181c46..b1af152 100644 --- a/include/minishell.h +++ b/include/minishell.h @@ -6,7 +6,7 @@ /* By: cacharle +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/02/26 15:33:51 by cacharle #+# #+# */ -/* Updated: 2020/10/10 08:08:21 by cacharle ### ########.fr */ +/* Updated: 2020/10/10 08:14:38 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ @@ -37,6 +37,7 @@ # include "libft_dstr.h" # include "lexer.h" +# include "parser.h" # include "error.h" /* @@ -151,15 +152,12 @@ bool utils_strisblank(char *str); bool setup(char *first_arg, t_env env); - /* ** debug.c */ # ifdef MINISHELL_TEST -# include "parser.h" - int debug_lexer(char *input); int debug_parser(char *input); void ast_print(int level, t_ast *ast); -- cgit