aboutsummaryrefslogtreecommitdiff
path: root/include/token.h
diff options
context:
space:
mode:
authorChristopher Uhlig2024-08-11 15:15:06 +0200
committerChristopher Uhlig2024-08-11 15:15:06 +0200
commit8cbba6da72ddd04e358bdb893e700702f92adacd (patch)
treeff66a099b7f364dc2e50d91b8b397df0ba1e4e0c /include/token.h
parent8abf7abdc9d49f52c4fcad0afc92730c4c195b7f (diff)
downloadminishell-8cbba6da72ddd04e358bdb893e700702f92adacd.tar.gz
minishell-8cbba6da72ddd04e358bdb893e700702f92adacd.zip
fixed |> fixed norm added new function
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 d7ff9f9..80ace03 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: 2024/08/05 13:23:27 by chuhlig ### ########.fr */
+/* Updated: 2024/08/11 13:46:22 by chuhlig ### ########.fr */
/* */
/* ************************************************************************** */
@@ -45,6 +45,7 @@ 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);
+void tokenizer(char *s, t_token **token_list,
+ char quote_check);
#endif \ No newline at end of file