diff options
Diffstat (limited to 'src/ft_d_define.h')
-rw-r--r-- | src/ft_d_define.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/ft_d_define.h b/src/ft_d_define.h index e5ef970..2a8002d 100644 --- a/src/ft_d_define.h +++ b/src/ft_d_define.h @@ -20,14 +20,15 @@ */ #define FT_PS_ONE "minishell ~> " -#define FT_BUILTINS "echo|cd|pwd|export|unset|env|exit|cat" -#define FT_BUILTINS_COUNT 8 +#define FT_BUILTINS "echo|cd|pwd|export|unset|env|exit" +#define FT_BUILTINS_COUNT 7 /* ** ====== FAIL MSG ====== */ -#define FT_FAIL_ALLOC "failed to allocate memory" -#define FT_FAIL_NO_OPTIONS "no options required" +#define FT_FAIL_ALLOC "failed to allocate memory" +#define FT_FAIL_NO_OPTIONS "no options required" +#define FT_FAIL_TOO_MANY_ARGS "too many arguments" #endif |