diff options
Diffstat (limited to 'include/token.h')
| -rw-r--r-- | include/token.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/token.h b/include/token.h index 32b042d..d61195d 100644 --- a/include/token.h +++ b/include/token.h @@ -6,7 +6,7 @@ /* By: dkaiser <dkaiser@student.42heilbronn.de +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/06/27 13:27:18 by dkaiser #+# #+# */ -/* Updated: 2024/07/08 14:48:57 by dkaiser ### ########.fr */ +/* Updated: 2024/07/09 18:38:50 by dkaiser ### ########.fr */ /* */ /* ************************************************************************** */ @@ -17,10 +17,10 @@ enum e_token_type { - STRING_TOKEN, - PIPE_TOKEN, - REDIR_TOKEN, - NEWLINE_TOKEN + STRING_TOKEN = 1, + PIPE_TOKEN = 2, + REDIR_TOKEN = 4, + NEWLINE_TOKEN = 8 }; union u_token_content |
