/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_boolean.h :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: gbaconni +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2021/08/20 10:17:09 by gbaconni #+# #+# */ /* Updated: 2021/08/20 12:05:50 by gbaconni ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef FT_BOOLEAN_H # define FT_BOOLEAN_H # include typedef int t_bool; # define TRUE 0 # define FALSE 1 # 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 #endif