aboutsummaryrefslogtreecommitdiff
path: root/src/parse/parse.c
blob: c99f0fee76547ccc914a9a78cf10815a3281887d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/**
** \file   parse.c
** \brief  Parser
*/

#include "parse.h"

t_ast				*parse(char *input)
{
/*     char **out_lex; */
/*     if (!(out_lex = lexer(input))) */
/*       return (NULL); */

    (void)input;
	return (NULL);
}