aboutsummaryrefslogtreecommitdiff
path: root/src/parse/parse.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/parse/parse.c')
-rw-r--r--src/parse/parse.c12
1 files changed, 6 insertions, 6 deletions
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);
}