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 /include/lexer.h | |
| parent | 95a16d2d88c8628ab0ae76f3ae04dfebee566950 (diff) | |
| download | minishell-b1cea511d13775425ee38e70c43e8a81f96b888e.tar.gz minishell-b1cea511d13775425ee38e70c43e8a81f96b888e.tar.bz2 minishell-b1cea511d13775425ee38e70c43e8a81f96b888e.zip | |
Cleaning parser
Diffstat (limited to 'include/lexer.h')
| -rw-r--r-- | include/lexer.h | 2 |
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 |
