/* ************************************************************************** */ /* */ /* :::::::: */ /* executor.h :+: :+: */ /* +:+ */ /* By: willem +#+ */ /* +#+ */ /* Created: 2025/02/08 17:06:07 by willem #+# #+# */ /* Updated: 2025/02/13 14:57:13 by whaffman ######## odam.nl */ /* */ /* ************************************************************************** */ #ifndef EXECUTOR_H # define EXECUTOR_H # include "minishell.h" char *executor_absolute_path(t_list *env, char *cmd); void executor_child(t_command *command); int executor_fork(t_command *command); void executor_create_pipes(t_minishell *minishell); void executor_execute_pipeline(t_minishell *minishell); void executor_close_fds(int n_fds); #endif // EXECUTOR_H