aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDominik Kaiser2024-08-02 14:14:42 +0200
committerDominik Kaiser2024-08-02 14:14:42 +0200
commit82c1eed4f7795ef135a586af2fb334145b64b2f6 (patch)
treecb4274f324fc88398166222b5df6741443df0689 /include
parentd59a405311553dbe568ed79a5449f3222f8495ad (diff)
downloadminishell-82c1eed4f7795ef135a586af2fb334145b64b2f6.tar.gz
minishell-82c1eed4f7795ef135a586af2fb334145b64b2f6.zip
Add function free_tokens()
Diffstat (limited to 'include')
-rw-r--r--include/token.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/token.h b/include/token.h
index d61195d..72ca5e5 100644
--- a/include/token.h
+++ b/include/token.h
@@ -6,7 +6,7 @@
/* By: dkaiser <dkaiser@student.42heilbronn.de +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/06/27 13:27:18 by dkaiser #+# #+# */
-/* Updated: 2024/07/09 18:38:50 by dkaiser ### ########.fr */
+/* Updated: 2024/08/02 14:13:19 by dkaiser ### ########.fr */
/* */
/* ************************************************************************** */
@@ -46,5 +46,6 @@ t_token *new_redir_token(int type, t_token *previous,
void free_token(t_token *token);
void free_token_and_connect(t_token *token);
+void free_tokens(t_token *tokens);
#endif