summaryrefslogtreecommitdiffstats
path: root/src/p_args.h
diff options
context:
space:
mode:
authorJozanLeClerc <bousset.rudy@gmail.com>2020-09-01 16:40:05 +0200
committerJozanLeClerc <bousset.rudy@gmail.com>2020-09-01 16:40:05 +0200
commit06217e697520e5c97393bc06b89fda073efa7ea6 (patch)
tree7f0c744900487395ffc36ed4185035876633bef3 /src/p_args.h
parentSecured malloc (diff)
download42-minishell-06217e697520e5c97393bc06b89fda073efa7ea6.tar.gz
42-minishell-06217e697520e5c97393bc06b89fda073efa7ea6.tar.bz2
42-minishell-06217e697520e5c97393bc06b89fda073efa7ea6.tar.xz
42-minishell-06217e697520e5c97393bc06b89fda073efa7ea6.tar.zst
42-minishell-06217e697520e5c97393bc06b89fda073efa7ea6.zip
Update
Diffstat (limited to 'src/p_args.h')
-rw-r--r--src/p_args.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/p_args.h b/src/p_args.h
new file mode 100644
index 0000000..162723d
--- /dev/null
+++ b/src/p_args.h
@@ -0,0 +1,20 @@
+/* ************************************************************************** */
+/* */
+/* ::: :::::::: */
+/* p_args.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 P_ARGS_H
+#define P_ARGS_H
+
+#include <stdint.h>
+
+char **p_split_args(const char word[], int8_t redir);
+
+#endif