/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_d_define.h :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: rbousset +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/02/14 17:19:27 by rbousset #+# #+# */ /* Updated: 2020/02/14 17:19:29 by rbousset ### ########lyon.fr */ /* */ /* ************************************************************************** */ #ifndef FT_D_DEFINE_H #define FT_D_DEFINE_H #include "ft_d_enum.h" /* ** ====== CLASSICS ====== */ #define FT_PS_ONE "minishell ~> " #define FT_BUILTINS "echo|cd|pwd|export|unset|env|exit|cat" #define FT_BUILTINS_COUNT 8 /* ** ====== FAIL MSG ====== */ #define FT_FAIL_ALLOC "failed to allocate memory" #define FT_FAIL_NO_OPTIONS "no options required" #endif