/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_boolean.h :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: jhalford +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2016/08/08 09:24:58 by jhalford #+# #+# */ /* Updated: 2016/08/13 16:21:09 by jhalford ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef FT_BOOLEAN_H # define FT_BOOLEAN_H # 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 # define TRUE 1 # define FALSE 0 # define EVEN(x) (!((x) % 2)) typedef int t_bool; #endif