From 6bb9eafa5fe8de5194801ab5ff3bd898a853c9fb Mon Sep 17 00:00:00 2001 From: nass1pro Date: Mon, 15 Jun 2020 17:49:27 +0200 Subject: change name function --- include/lexer.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'include/lexer.h') diff --git a/include/lexer.h b/include/lexer.h index 5886035..effc94c 100644 --- a/include/lexer.h +++ b/include/lexer.h @@ -45,4 +45,6 @@ void token_destroy(t_token *token); void token_destroy_lst(t_ftlst *tokens); void token_destroy_lst2(t_ftlst *tokens1, t_ftlst *tokens2); +t_ftlst *lexe_trim_out(t_ftlst *lst); + #endif -- cgit From 7b383ea28c818441ae5a75ed573dc03e992cd89f Mon Sep 17 00:00:00 2001 From: nass1pro Date: Mon, 15 Jun 2020 19:24:25 +0200 Subject: Update lexer --- include/lexer.h | 1 + 1 file changed, 1 insertion(+) (limited to 'include/lexer.h') diff --git a/include/lexer.h b/include/lexer.h index effc94c..b0e7f65 100644 --- a/include/lexer.h +++ b/include/lexer.h @@ -44,6 +44,7 @@ t_token *token_new(enum e_token_tag tag, char *content); void token_destroy(t_token *token); void token_destroy_lst(t_ftlst *tokens); void token_destroy_lst2(t_ftlst *tokens1, t_ftlst *tokens2); +t_token *push_token_enum(t_token *lst_token); t_ftlst *lexe_trim_out(t_ftlst *lst); -- cgit