summaryrefslogtreecommitdiffstats
path: root/inc/minishell.h
diff options
context:
space:
mode:
Diffstat (limited to 'inc/minishell.h')
-rw-r--r--inc/minishell.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/inc/minishell.h b/inc/minishell.h
index e69de29..f92195c 100644
--- a/inc/minishell.h
+++ b/inc/minishell.h
@@ -0,0 +1,10 @@
+#ifndef _MINISHELL_H__
+#define _MINISHELL_H__
+
+#include <inttypes.h>
+
+int ft_process_arg(const char *arg);
+int ft_echo(char **com, uint8_t n);
+int ft_pwd(void);
+
+#endif