From 490237aece240c05b5a9035665a88327e1be87ed Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Sun, 13 Sep 2020 18:15:47 +0200 Subject: Refactoring lexer/trim by removing the unecessary allocation --- include/lexer.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include') diff --git a/include/lexer.h b/include/lexer.h index 7f31699..f4d4648 100644 --- a/include/lexer.h +++ b/include/lexer.h @@ -6,7 +6,7 @@ /* By: nahaddac +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/06/19 10:51:26 by nahaddac #+# #+# */ -/* Updated: 2020/09/13 17:33:53 by charles ### ########.fr */ +/* Updated: 2020/09/13 18:06:35 by charles ### ########.fr */ /* */ /* ************************************************************************** */ @@ -113,6 +113,6 @@ int quote_len(char *input, int i); ** trim.c */ -t_tok_lst *lexer_trim_out(t_tok_lst *lst); +void lexer_trim(t_tok_lst *lst); #endif -- cgit