/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* token.h :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: qmennen +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2025/03/05 13:11:41 by qmennen #+# #+# */ /* Updated: 2025/03/18 16:14:51 by qmennen ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef TOKEN_H # define TOKEN_H # include "minishell.h" t_token *token_from_list(t_list *list); t_list *token_list_index(t_list *tokens, int index); t_token *token_validate_list(t_list *tokens); #endif