-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.c
19 lines (17 loc) · 1000 Bytes
/
main.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* main.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: yli <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/01/24 18:18:22 by yli #+# #+# */
/* Updated: 2023/01/24 18:18:24 by yli ### ########.fr */
/* */
/* ************************************************************************** */
#include "pipex.h"
int main(int argc, char **argv, char **envp)
{
pipex(argc, argv, envp);
return (0);
}