#ifndef _MINISHELL_H__ #define _MINISHELL_H__ #include #define FT_PS1 "joe-sh~> " int ft_process_arg(const char *arg); int ft_echo(char **com, uint8_t n); int ft_pwd(void); uint8_t ft_exit(char **com); int ft_error(const char *com, int errno); int ft_exec(char **app); #endif