Archived
1
0
This repository has been archived on 2024-10-25. You can view files and clone it, but cannot push or open issues or pull requests.
pipex/include/exec.h

23 lines
1009 B
C
Raw Permalink Normal View History

2024-03-22 21:23:17 +01:00
/* ************************************************************************** */
/* */
/* ::: :::::::: */
2024-04-07 11:03:38 +02:00
/* exec.h :+: :+: :+: */
2024-03-22 21:23:17 +01:00
/* +:+ +:+ +:+ */
/* By: adjoly <adjoly@student.42angouleme.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
2024-04-07 11:03:38 +02:00
/* Created: 2024/04/06 14:15:47 by adjoly #+# #+# */
2024-04-07 11:04:27 +02:00
/* Updated: 2024/04/07 11:04:19 by adjoly ### ########.fr */
2024-03-22 21:23:17 +01:00
/* */
/* ************************************************************************** */
2024-04-07 11:03:38 +02:00
#ifndef EXEC_H
# define EXEC_H
2024-03-22 21:23:17 +01:00
2024-04-07 11:03:38 +02:00
# include <sys/wait.h>
2024-03-28 23:05:43 +01:00
2024-04-07 11:04:27 +02:00
# include "pipex.h"
2024-04-07 11:03:38 +02:00
void exec_pipe(t_pipex *pipex);
#endif