From 73a7027a9d58c6ca71817170bff23ac71edac9d8 Mon Sep 17 00:00:00 2001 From: Charles Date: Sat, 28 Mar 2020 12:10:13 +0100 Subject: Cleaning env and path, Removed state struct --- src/parse/parse.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/parse/parse.c') diff --git a/src/parse/parse.c b/src/parse/parse.c index d1ec153..bdd0144 100644 --- a/src/parse/parse.c +++ b/src/parse/parse.c @@ -1,11 +1,11 @@ #include "minishell.h" -void *ms_parse(char *input) +t_ast *ms_parse(char *input) { - char **out_lex; +/* char **out_lex; */ +/* if (!(out_lex = ms_lexer(input))) */ +/* return (NULL); */ - if (!(out_lex = ms_lexer(input))) - ; - - //(void)input; + (void)input; + return (NULL); } -- cgit