-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_isuppercase.c
16 lines (15 loc) · 967 Bytes
/
ft_isuppercase.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_isuppercase.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: luiroel <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/02/03 03:57:48 by luiroel #+# #+# */
/* Updated: 2020/02/20 14:54:39 by luiroel ### ########.fr */
/* */
/* ************************************************************************** */
int ft_isuppercase(int c)
{
return (c >= 'A' && c <= 'Z') ? (1) : (0);
}