/** ** \file parse.c ** \brief Parser */ #include "minishell.h" t_ast *ms_parse(char *input) { /* char **out_lex; */ /* if (!(out_lex = ms_lexer(input))) */ /* return (NULL); */ (void)input; return (NULL); }