From b1cea511d13775425ee38e70c43e8a81f96b888e Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Fri, 28 Aug 2020 10:27:52 +0200 Subject: Cleaning parser --- include/lexer.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/lexer.h') 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 -- cgit