summaryrefslogtreecommitdiffstats
path: root/src/ft_exec.c
diff options
context:
space:
mode:
authorJozanLeClerc <bousset.rudy@gmail.com>2020-04-20 14:51:45 +0200
committerJozanLeClerc <bousset.rudy@gmail.com>2020-04-20 14:51:45 +0200
commitc9e4fb6e2ad07e13cf41d6ce6afad30b04011765 (patch)
tree74d816c107c959315ae52166dac96fe2fe0c2a5e /src/ft_exec.c
parentWell well well that wasn't too bad, now remake everything (diff)
download42-minishell-c9e4fb6e2ad07e13cf41d6ce6afad30b04011765.tar.gz
42-minishell-c9e4fb6e2ad07e13cf41d6ce6afad30b04011765.tar.bz2
42-minishell-c9e4fb6e2ad07e13cf41d6ce6afad30b04011765.tar.xz
42-minishell-c9e4fb6e2ad07e13cf41d6ce6afad30b04011765.tar.zst
42-minishell-c9e4fb6e2ad07e13cf41d6ce6afad30b04011765.zip
Solid base
Diffstat (limited to '')
-rw-r--r--src/ft_exec.c39
1 files changed, 0 insertions, 39 deletions
diff --git a/src/ft_exec.c b/src/ft_exec.c
deleted file mode 100644
index 408697d..0000000
--- a/src/ft_exec.c
+++ /dev/null
@@ -1,39 +0,0 @@
-/* ************************************************************************** */
-/* LE - / */
-/* / */
-/* ft_exec.c .:: .:/ . .:: */
-/* +:+:+ +: +: +:+:+ */
-/* By: rbousset <marvin@le-101.fr> +:+ +: +: +:+ */
-/* #+# #+ #+ #+# */
-/* Created: 2019/11/01 18:46:50 by rbousset #+# ## ## #+# */
-/* Updated: 2019/11/01 18:47:21 by rbousset ### #+. /#+ ###.fr */
-/* / */
-/* / */
-/* ************************************************************************** */
-
-#include <libft.h>
-#include <stdlib.h>
-#include <minishell.h>
-#include <unistd.h>
-
-int
-ft_exec(char **com)
-{
- uint8_t i;
-
- i = 0;
- while (com[i])
- i++;
- if (fork() == 0)
- {
- if (!ft_strncmp(com[0], "./", 2))
- {
- if ((execve(com[0] + 2, com, NULL)) != 0)
- return (ft_error(com[0], 127));
- }
- else
- if ((execve(com[0], com, NULL)) != 0)
- return (ft_error(com[0], 127));
- }
- return (0);
-}