diff options
| author | Charles Cabergs <me@cacharle.xyz> | 2020-09-14 16:34:26 +0200 |
|---|---|---|
| committer | Charles Cabergs <me@cacharle.xyz> | 2020-09-14 16:34:26 +0200 |
| commit | 948ac90c7b32fd06d939db41fdab848fd0a9abbe (patch) | |
| tree | 4fbdedf66a3c5b828f0446e3e89b594b83932ebc /include/lexer.h | |
| parent | c0855888dc8d442791a67aa27be6dfcd8bfbf17d (diff) | |
| download | minishell-948ac90c7b32fd06d939db41fdab848fd0a9abbe.tar.gz minishell-948ac90c7b32fd06d939db41fdab848fd0a9abbe.tar.bz2 minishell-948ac90c7b32fd06d939db41fdab848fd0a9abbe.zip | |
Renaming lexer status variable
Diffstat (limited to 'include/lexer.h')
| -rw-r--r-- | include/lexer.h | 4 |
1 files changed, 2 insertions, 2 deletions
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 <nahaddac@student.42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* 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); /* |
