From b15ab562d74b5111ac7c9bd6e0ec185435902472 Mon Sep 17 00:00:00 2001 From: Charles Date: Tue, 31 Mar 2020 21:41:33 +0200 Subject: Removing ms_ prefix, Removing junk --- src/parse/parse.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/parse/parse.c') diff --git a/src/parse/parse.c b/src/parse/parse.c index 41b82c2..c99f0fe 100644 --- a/src/parse/parse.c +++ b/src/parse/parse.c @@ -3,12 +3,12 @@ ** \brief Parser */ -#include "minishell.h" +#include "parse.h" -t_ast *ms_parse(char *input) +t_ast *parse(char *input) { /* char **out_lex; */ -/* if (!(out_lex = ms_lexer(input))) */ +/* if (!(out_lex = lexer(input))) */ /* return (NULL); */ (void)input; -- cgit