From 948ac90c7b32fd06d939db41fdab848fd0a9abbe Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Mon, 14 Sep 2020 16:34:26 +0200 Subject: Renaming lexer status variable --- include/lexer.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/lexer.h') diff --git a/include/lexer.h b/include/lexer.h index b1df017..15c5d93 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/14 16:10:44 by nahaddac ### ########.fr */ +/* Updated: 2020/09/14 16:28:13 by charles ### ########.fr */ /* */ /* ************************************************************************** */ @@ -99,7 +99,7 @@ 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); -int lexer(char *input, t_tok_lst **lst); +int lexer(char *input, t_tok_lst **out); /* -- cgit