aboutsummaryrefslogtreecommitdiff
path: root/include/minishell.h
diff options
context:
space:
mode:
authorCharles Cabergs <me@cacharle.xyz>2020-10-10 08:39:24 +0200
committerCharles Cabergs <me@cacharle.xyz>2020-10-10 08:39:24 +0200
commit5f908033e68f6f3e03f2c38f4c396a0eab77ed05 (patch)
tree993f38b720a00b3013828da7969df22e05b013c3 /include/minishell.h
parent25ca78b5a53c931b0bc388aef099974dbba4b6ff (diff)
downloadminishell-5f908033e68f6f3e03f2c38f4c396a0eab77ed05.tar.gz
minishell-5f908033e68f6f3e03f2c38f4c396a0eab77ed05.tar.bz2
minishell-5f908033e68f6f3e03f2c38f4c396a0eab77ed05.zip
Norming lexer
Diffstat (limited to 'include/minishell.h')
-rw-r--r--include/minishell.h6
1 files changed, 2 insertions, 4 deletions
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 <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* 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);