diff options
| author | Dominik Kaiser | 2025-01-20 19:04:57 +0100 |
|---|---|---|
| committer | GitHub | 2025-01-20 19:04:57 +0100 |
| commit | b73e9e4fda360885035b9b04e9e9aca4724cb285 (patch) | |
| tree | 4890581e58503e6f17d1044f0ce40630c7707944 /include/token.h | |
| parent | 63a78c5ecea8acf1d8d7096bc693f4b489c3aab4 (diff) | |
| parent | a9aba07b52cbf98eb9c52cd8ee0cd5f5021d2931 (diff) | |
| download | minishell-b73e9e4fda360885035b9b04e9e9aca4724cb285.tar.gz minishell-b73e9e4fda360885035b9b04e9e9aca4724cb285.zip | |
Merge branch 'main' into miau
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 993a408..bb7ea94 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); void print_token(t_token *token); |
