/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_boolean.h :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: whaffman +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/06/17 17:58:03 by whaffman #+# #+# */ /* Updated: 2024/06/22 11:41:28 by whaffman ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef FT_BOOLEAN_H # define FT_BOOLEAN_H # include # define TRUE 1 # define FALSE 0 # define EVEN(nbr) ((nbr) % 2 == 0) # define EVEN_MSG "I have an even number of arguments.\n" # define ODD_MSG "I have an odd number of arguments.\n" # define SUCCESS 0 typedef char t_bool; #endif