-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.c
executable file
·22 lines (19 loc) · 1 KB
/
test.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* test.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: pferry <pferry@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2014/02/04 16:16:13 by pferry #+# #+# */
/* Updated: 2014/02/05 18:56:42 by pferry ### ########.fr */
/* */
/* ************************************************************************** */
#include "shell3.h"
int main(int argc, char **argv, char **environ)
{
argc = argc;
ft_envinit();
ft_envreset(1);
return (0);
}