aboutsummaryrefslogtreecommitdiff
path: root/src/lexer/tok_lst.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lexer/tok_lst.c')
-rw-r--r--src/lexer/tok_lst.c2
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;