/* ************************************************************************** */ /* */ /* :::::::: */ /* redirect.h :+: :+: */ /* +:+ */ /* By: Quinten +#+ */ /* +#+ */ /* Created: 2025/02/23 12:26:29 by Quinten #+# #+# */ /* Updated: 2025/02/23 12:26:29 by Quinten ######## odam.nl */ /* */ /* ************************************************************************** */ #ifndef REDIRECT_H # define REDIRECT_H # include "minishell.h" t_redirect *redirect_new(t_token_type type, char *value); t_list *redirect_get_inputs(t_list *list); int redirect_is_valid(t_list *lst, t_token *token); #endif