aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDominik Kaiser2024-08-29 15:27:07 +0200
committerDominik Kaiser2024-08-29 15:27:07 +0200
commitad4591381f9c3bb713da4d519caeea60ff3b99e7 (patch)
tree6883f97be0f8587a2aef9595954da672c2e68121 /include
parent99e8655aaf9827c7d5248c7f3d0913fcb1377cfb (diff)
parent0d4f9e94f6d28a154ae4be3b918bfb014b4fa1e0 (diff)
downloadminishell-ad4591381f9c3bb713da4d519caeea60ff3b99e7.tar.gz
minishell-ad4591381f9c3bb713da4d519caeea60ff3b99e7.zip
Merge branch 'main' into parser
Diffstat (limited to 'include')
-rw-r--r--include/token.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/token.h b/include/token.h
index 49d51e1..54a65f2 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/11 11:00:22 by dkaiser ### ########.fr */
+/* Updated: 2024/08/29 15:26:23 by dkaiser ### ########.fr */
/* */
/* ************************************************************************** */
@@ -47,6 +47,7 @@ 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);
+void tokenizer(char *s, t_token **token_list,
+ char quote_check);
#endif