From cadd588473f82cdbbfdb7210bddd22262561faf3 Mon Sep 17 00:00:00 2001 From: nass1pro Date: Sun, 14 Jun 2020 09:01:57 +0200 Subject: Add t_ret in ast.h --- src/parse/parse.c | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) (limited to 'src/parse/parse.c') 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 -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; } -- cgit