28 lines
1.2 KiB
C
28 lines
1.2 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* :::::::: */
|
|
/* executor.h :+: :+: */
|
|
/* +:+ */
|
|
/* By: willem <willem@student.codam.nl> +#+ */
|
|
/* +#+ */
|
|
/* Created: 2025/02/08 17:06:07 by willem #+# #+# */
|
|
/* Updated: 2025/02/12 20:24:20 by willem ######## 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);
|
|
|
|
|
|
|
|
|
|
#endif // EXECUTOR_H
|