#include "garbage.h"#include "builtins.h"#include "minishell.h"#include "exec.h"#include <errno.h>#include <stdlib.h>#include <unistd.h>#include <wait.h>
Functions | |
| void | execute_pipeline (t_data *data, pid_t *pids, size_t *count) |
| Execute all the command that are followed by pipes. | |
| void | wait_all_childs (t_command *command, pid_t *pids) |
| Waits for all the childs with their pids. | |