/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_isupper.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: bchanot +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2016/08/09 23:42:37 by bchanot #+# #+# */ /* Updated: 2017/11/13 16:11:22 by bchanot ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" int ft_isupper(int c) { if (c >= 65 && c <= 90) return (true); return (false); }