aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorcuhlig2024-08-09 16:26:37 +0200
committerGitHub2024-08-09 16:26:37 +0200
commit8abf7abdc9d49f52c4fcad0afc92730c4c195b7f (patch)
tree2255b668d61572fac185c3d6b5ddf7830a675371 /include
parent36d2b4da2887419705cd22eb97a6283be86816f4 (diff)
parente197ecae60b005b0cfe7270f243740ae967bcb7d (diff)
downloadminishell-8abf7abdc9d49f52c4fcad0afc92730c4c195b7f.tar.gz
minishell-8abf7abdc9d49f52c4fcad0afc92730c4c195b7f.zip
Merge pull request #12 from dpu-kaiser/tokenizer
Tokenizer
Diffstat (limited to 'include')
-rw-r--r--include/token.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/include/token.h b/include/token.h
index 38e758f..d7ff9f9 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/06/28 14:59:19 by dkaiser ### ########.fr */
+/* Updated: 2024/08/05 13:23:27 by chuhlig ### ########.fr */
/* */
/* ************************************************************************** */
@@ -45,5 +45,6 @@ t_token *new_redir_token(int type, t_token *previous,
t_token *next);
void free_token(t_token *token);
+void tokenizer(char *s, t_token **token_list);
-#endif
+#endif \ No newline at end of file