/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_isupper.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: tmaze +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2018/04/09 10:10:12 by tmaze #+# #+# */ /* Updated: 2018/04/09 10:10:31 by tmaze ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" int ft_isupper(int c) { return (c >= 'A' && c <= 'Z'); }