diff options
author | Rudy Bousset <rbousset@z2r5p6.le-101.fr> | 2019-10-29 13:22:04 +0100 |
---|---|---|
committer | Rudy Bousset <rbousset@z2r5p6.le-101.fr> | 2019-10-29 13:22:04 +0100 |
commit | 079d839aee68e52932eacbd8d4c75ba1388b006a (patch) | |
tree | 406665acdbfa9e61fbccad924d4dcc27de0463e1 /inc | |
parent | libft included (diff) | |
download | 42-minishell-079d839aee68e52932eacbd8d4c75ba1388b006a.tar.gz 42-minishell-079d839aee68e52932eacbd8d4c75ba1388b006a.tar.bz2 42-minishell-079d839aee68e52932eacbd8d4c75ba1388b006a.tar.xz 42-minishell-079d839aee68e52932eacbd8d4c75ba1388b006a.tar.zst 42-minishell-079d839aee68e52932eacbd8d4c75ba1388b006a.zip |
tons of changes
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 |