diff options
Diffstat (limited to 'inc')
-rw-r--r-- | inc/minishell.h | 10 |
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 |