aboutsummaryrefslogtreecommitdiff
path: root/include/token.h
diff options
context:
space:
mode:
authorDominik Kaiser2024-08-11 11:18:26 +0200
committerDominik Kaiser2024-08-11 11:18:26 +0200
commit8cf2aec82f98094d8175c5e5daaaa115f9b64fc2 (patch)
tree9c06dfc42031efc26f1fdfeec4bca8c975c4199c /include/token.h
parentc7a4494fd97b7e80665cbd47ed96bc37bf5800e5 (diff)
parent8abf7abdc9d49f52c4fcad0afc92730c4c195b7f (diff)
downloadminishell-8cf2aec82f98094d8175c5e5daaaa115f9b64fc2.tar.gz
minishell-8cf2aec82f98094d8175c5e5daaaa115f9b64fc2.zip
Merge changes from main into parser branch
Diffstat (limited to 'include/token.h')
-rw-r--r--include/token.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/token.h b/include/token.h
index 72ca5e5..49d51e1 100644
--- a/include/token.h
+++ b/include/token.h
@@ -3,10 +3,10 @@
/* ::: :::::::: */
/* token.h :+: :+: :+: */
/* +:+ +:+ +:+ */
-/* By: dkaiser <dkaiser@student.42heilbronn.de +#+ +:+ +#+ */
+/* By: chuhlig <chuhlig@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/06/27 13:27:18 by dkaiser #+# #+# */
-/* Updated: 2024/08/02 14:13:19 by dkaiser ### ########.fr */
+/* Updated: 2024/08/11 11:00:22 by dkaiser ### ########.fr */
/* */
/* ************************************************************************** */
@@ -47,5 +47,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);
+void tokenizer(char *s, t_token **token_list);
#endif