summaryrefslogtreecommitdiffstats
path: root/src/f_exec.h
diff options
context:
space:
mode:
authorJozanLeClerc <bousset.rudy@gmail.com>2020-08-18 17:37:43 +0200
committerJozanLeClerc <bousset.rudy@gmail.com>2020-08-18 17:37:43 +0200
commit0872d876f187a30b63062f77c17b8e78296b0557 (patch)
tree1a85d6c9629335592a6d1bb8a5dda5214cde27be /src/f_exec.h
parentUpdated TODO (diff)
download42-minishell-0872d876f187a30b63062f77c17b8e78296b0557.tar.gz
42-minishell-0872d876f187a30b63062f77c17b8e78296b0557.tar.bz2
42-minishell-0872d876f187a30b63062f77c17b8e78296b0557.tar.xz
42-minishell-0872d876f187a30b63062f77c17b8e78296b0557.tar.zst
42-minishell-0872d876f187a30b63062f77c17b8e78296b0557.zip
Handled execve fail
Diffstat (limited to 'src/f_exec.h')
-rw-r--r--src/f_exec.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/f_exec.h b/src/f_exec.h
new file mode 100644
index 0000000..17f3484
--- /dev/null
+++ b/src/f_exec.h
@@ -0,0 +1,20 @@
+/* ************************************************************************** */
+/* */
+/* ::: :::::::: */
+/* f_exec.h :+: :+: :+: */
+/* +:+ +:+ +:+ */
+/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */
+/* +#+#+#+#+#+ +#+ */
+/* Created: 2020/02/14 17:19:27 by rbousset #+# #+# */
+/* Updated: 2020/02/14 17:19:29 by rbousset ### ########lyon.fr */
+/* */
+/* ************************************************************************** */
+
+#ifndef F_EXEC_H
+#define F_EXEC_H
+
+#include "s_struct.h"
+
+void f_exec(const char fullpath[]);
+
+#endif