diff options
| author | Charles Cabergs <me@cacharle.xyz> | 2020-08-28 10:27:52 +0200 |
|---|---|---|
| committer | Charles Cabergs <me@cacharle.xyz> | 2020-08-28 12:54:16 +0200 |
| commit | b1cea511d13775425ee38e70c43e8a81f96b888e (patch) | |
| tree | 615787b79b8f3b0fd9ba023e955c585633351a13 /src/lexer/tok_lst.c | |
| parent | 95a16d2d88c8628ab0ae76f3ae04dfebee566950 (diff) | |
| download | minishell-b1cea511d13775425ee38e70c43e8a81f96b888e.tar.gz minishell-b1cea511d13775425ee38e70c43e8a81f96b888e.tar.bz2 minishell-b1cea511d13775425ee38e70c43e8a81f96b888e.zip | |
Cleaning parser
Diffstat (limited to 'src/lexer/tok_lst.c')
| -rw-r--r-- | src/lexer/tok_lst.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lexer/tok_lst.c b/src/lexer/tok_lst.c index a620aa5..a746794 100644 --- a/src/lexer/tok_lst.c +++ b/src/lexer/tok_lst.c @@ -59,7 +59,7 @@ t_tok_lst *tok_lst_last(t_tok_lst *tokens) return ((t_tok_lst*)ft_lstlast((t_ftlst*)tokens)); } -t_tok_lst *tok_lst_pop_front(t_tok_lst **tokens) +t_tok_lst *tok_lst_uncons(t_tok_lst **tokens) { t_tok_lst *poped; |
