diff options
| author | Christopher Uhlig | 2025-01-20 19:32:10 +0100 |
|---|---|---|
| committer | Christopher Uhlig | 2025-01-20 19:32:10 +0100 |
| commit | 852e00cb465b05f13aa6298ce71a1067c0846556 (patch) | |
| tree | 23407cd33e3dc255a9a4a6acb9d67a051ba80f65 /include/token.h | |
| parent | b73e9e4fda360885035b9b04e9e9aca4724cb285 (diff) | |
| download | minishell-852e00cb465b05f13aa6298ce71a1067c0846556.tar.gz minishell-852e00cb465b05f13aa6298ce71a1067c0846556.zip | |
fixed norm tester 133 remove .vs
Diffstat (limited to 'include/token.h')
| -rw-r--r-- | include/token.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/token.h b/include/token.h index bb7ea94..2e8da35 100644 --- a/include/token.h +++ b/include/token.h @@ -6,7 +6,7 @@ /* By: chuhlig <chuhlig@student.42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/06/27 13:27:18 by dkaiser #+# #+# */ -/* Updated: 2025/01/20 12:37:59 by chuhlig ### ########.fr */ +/* Updated: 2025/01/20 19:10:30 by chuhlig ### ########.fr */ /* */ /* ************************************************************************** */ @@ -43,9 +43,9 @@ t_token *new_str_token(char *str, t_token *previous, t_token *next); t_token *new_redir_token(int type, t_token *previous, t_token *next); - +void free_tokens(t_token *tokens); void free_token(t_token *token); - +void free_token_and_connect(t_token *token); void tokenizer(char *s, t_token **token_list, char quote_check); void print_token(t_token *token); |
