diff options
| author | Dominik Kaiser | 2025-01-14 16:47:26 +0100 |
|---|---|---|
| committer | GitHub | 2025-01-14 16:47:26 +0100 |
| commit | a9aba07b52cbf98eb9c52cd8ee0cd5f5021d2931 (patch) | |
| tree | feda16d3fceb55918ada4b2850bbf6560f51654b /include/token.h | |
| parent | ce448752a4915806bb4cd5ac67b8855362135828 (diff) | |
| parent | a93558047c6d04ca4181fa84229d82b09dd7def2 (diff) | |
| download | minishell-a9aba07b52cbf98eb9c52cd8ee0cd5f5021d2931.tar.gz minishell-a9aba07b52cbf98eb9c52cd8ee0cd5f5021d2931.zip | |
Merge tokenizer bugfix into main
Diffstat (limited to 'include/token.h')
| -rw-r--r-- | include/token.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/token.h b/include/token.h index 54a65f2..7e2038a 100644 --- a/include/token.h +++ b/include/token.h @@ -45,8 +45,7 @@ t_token *new_redir_token(int type, t_token *previous, t_token *next); void free_token(t_token *token); -void free_token_and_connect(t_token *token); -void free_tokens(t_token *tokens); + void tokenizer(char *s, t_token **token_list, char quote_check); |
