From 7f08c8ba80240ece1f34caa4fb15e240301fff5e Mon Sep 17 00:00:00 2001 From: nass1pro Date: Mon, 14 Sep 2020 16:21:24 +0200 Subject: test error lexer quote --- include/lexer.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'include') diff --git a/include/lexer.h b/include/lexer.h index c477a4f..b1df017 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 20:33:53 by charles ### ########.fr */ +/* Updated: 2020/09/14 16:10:44 by nahaddac ### ########.fr */ /* */ /* ************************************************************************** */ @@ -99,8 +99,8 @@ t_tok_lst *tok_lst_uncons(t_tok_lst **tokens); int len_until_sep(char *input); int tok_len(char *input); t_tok_lst *create_token_list(char *input, t_tok_lst **lst); -t_tok_lst *lexer(char *input); -// int check_input_out(char *input); +int lexer(char *input, t_tok_lst **lst); + /* ** utils.c @@ -117,6 +117,6 @@ int quote_len(char *input, int i); ** trim.c */ -void lexer_trim(t_tok_lst *lst); +int lexer_trim(t_tok_lst *lst); #endif -- cgit