diff options
Diffstat (limited to 'src/parse/parse.c')
| -rw-r--r-- | src/parse/parse.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/parse/parse.c b/src/parse/parse.c new file mode 100644 index 0000000..a0da5d9 --- /dev/null +++ b/src/parse/parse.c @@ -0,0 +1,18 @@ +/* +** \file parse.c +** \brief Parser +*/ + +#include "parse.h" + +t_ast *parse(char **input) +{ + /* int i = 0; */ + + (void)input; + /* while (input[i] != '\0') */ + /* { */ + /* */ + /* } */ + return NULL; +} |
