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, 5 insertions, 7 deletions
diff --git a/src/parse/parse.c b/src/parse/parse.c
index ed1aa28..3aa2a30 100644
--- a/src/parse/parse.c
+++ b/src/parse/parse.c
@@ -5,12 +5,10 @@
#include "parse.h"
-t_ast *parse(char *input)
+t_ast *parse(char **input)
{
-/* char **out_lex; */
-/* if (!(out_lex = lexer(input))) */
-/* return (NULL); */
-
- (void)input;
- return (NULL);
+ while (input[i] != '\0')
+ {
+
+ }
}