diff options
Diffstat (limited to 'src/ft_exec.c')
-rw-r--r-- | src/ft_exec.c | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/src/ft_exec.c b/src/ft_exec.c index 0c950e4..7177f5b 100644 --- a/src/ft_exec.c +++ b/src/ft_exec.c @@ -1,10 +1,18 @@ #include <libft.h> #include <minishell.h> -#include <uinstd.h> +#include <unistd.h> int ft_exec(char **app) { - (void)app; + uint8_t i; + + i = 0; + while (app[i]) + i++; + if (i < 2) + return (execve(app[0] + 2, NULL, NULL)); + else + return (execve(app[0] + 2, &app[1], NULL)); return (0); } |