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 a0da5d9..6f9c99b 100644
--- a/src/parse/parse.c
+++ b/src/parse/parse.c
@@ -4,15 +4,13 @@
*/
#include "parse.h"
+#include <stdio.h>
-t_ast *parse(char **input)
+t_ast *parse(t_ftlst *lst)
{
- /* int i = 0; */
+ t_ret *ret;
- (void)input;
- /* while (input[i] != '\0') */
- /* { */
- /* */
- /* } */
+ ret->rest = lst;
+ ret =
return NULL;
}