/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_isupper.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: narnaud +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2022/03/24 10:06:18 by narnaud #+# #+# */ /* Updated: 2022/03/24 10:07:15 by narnaud ### ########.fr */ /* */ /* ************************************************************************** */ #include "../libft.h" int ft_isupper(char c) { if (c >= 'A' && c <= 'Z') return (1); return (0); }