From 3b319748a024067b4ce0b70ae2dad364977d6365 Mon Sep 17 00:00:00 2001 From: nass1pro Date: Tue, 24 Mar 2020 20:13:26 +0100 Subject: test compil --- include/minishell.h | 2 +- include/ms_parse.h | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) (limited to 'include') diff --git a/include/minishell.h b/include/minishell.h index d1bb237..3eb03c7 100644 --- a/include/minishell.h +++ b/include/minishell.h @@ -63,7 +63,7 @@ void ms_state_destroy(t_state *state); ** eval.c */ -int ms_eval(t_parsing *parsing); +int ms_eval(t_ast *parsing); /* ** path.c diff --git a/include/ms_parse.h b/include/ms_parse.h index c6885ca..ef82146 100644 --- a/include/ms_parse.h +++ b/include/ms_parse.h @@ -72,10 +72,13 @@ typedef struct t_ast { struct t_ast** children; } t_ast; +char **ms_lexer(char *input); + /* ** parse.c */ -t_parsing *ms_parse(char *input); + +void *ms_parse(char *input); #endif -- cgit