From 5ade92701836ce5ee1d39fc8d486b7709547058e Mon Sep 17 00:00:00 2001 From: Charles Date: Tue, 9 Jun 2020 17:09:55 +0200 Subject: Added iterpolation like bash according to lexer output (2 leaks) --- src/parse/parse.c | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'src/parse/parse.c') 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; } -- cgit