aboutsummaryrefslogtreecommitdiff
path: root/include/lexer.h
diff options
context:
space:
mode:
authorCharles Cabergs <me@cacharle.xyz>2020-08-28 10:27:52 +0200
committerCharles Cabergs <me@cacharle.xyz>2020-08-28 12:54:16 +0200
commitb1cea511d13775425ee38e70c43e8a81f96b888e (patch)
tree615787b79b8f3b0fd9ba023e955c585633351a13 /include/lexer.h
parent95a16d2d88c8628ab0ae76f3ae04dfebee566950 (diff)
downloadminishell-b1cea511d13775425ee38e70c43e8a81f96b888e.tar.gz
minishell-b1cea511d13775425ee38e70c43e8a81f96b888e.tar.bz2
minishell-b1cea511d13775425ee38e70c43e8a81f96b888e.zip
Cleaning parser
Diffstat (limited to 'include/lexer.h')
-rw-r--r--include/lexer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/lexer.h b/include/lexer.h
index f8e16bc..ba248a8 100644
--- a/include/lexer.h
+++ b/include/lexer.h
@@ -60,7 +60,7 @@ void tok_lst_push_back(t_tok_lst **tokens, t_tok_lst *pushed);
t_tok_lst *tok_lst_push_front(t_tok_lst **tokens, t_tok_lst *pushed);
void *tok_lst_destroy(t_tok_lst **tokens, void (*del)(void*));
t_tok_lst *tok_lst_last(t_tok_lst *tokens);
-t_tok_lst *tok_lst_pop_front(t_tok_lst **tokens);
+t_tok_lst *tok_lst_uncons(t_tok_lst **tokens);
/*
** lexer.c