aboutsummaryrefslogtreecommitdiff
path: root/src/parse
diff options
context:
space:
mode:
Diffstat (limited to 'src/parse')
-rw-r--r--src/parse/parse.c12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/parse/parse.c b/src/parse/parse.c
index 4c8d279..a0da5d9 100644
--- a/src/parse/parse.c
+++ b/src/parse/parse.c
@@ -7,10 +7,12 @@
t_ast *parse(char **input)
{
- int i = 0;
+ /* int i = 0; */
- while (input[i] != '\0')
- {
-
- }
+ (void)input;
+ /* while (input[i] != '\0') */
+ /* { */
+ /* */
+ /* } */
+ return NULL;
}