From d368db01d5745616a5482507721a146b0c806fa1 Mon Sep 17 00:00:00 2001 From: mdev9 Date: Fri, 16 Feb 2024 12:49:37 +0100 Subject: [PATCH] added command tokens for redirections --- minishell.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/minishell.h b/minishell.h index cc5582c..2462a80 100755 --- a/minishell.h +++ b/minishell.h @@ -6,7 +6,7 @@ /* By: marde-vr +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/02/04 17:31:38 by tomoron #+# #+# */ -/* Updated: 2024/02/13 16:21:55 by marde-vr ### ########.fr */ +/* Updated: 2024/02/16 12:48:57 by marde-vr ### ########.fr */ /* */ /* ************************************************************************** */ @@ -22,6 +22,10 @@ typedef enum e_token_type { ARG, PIPE, + RED_O, + RED_I, + RED_I_APP, + HERE_DOC, OR, AND } t_token_type;