-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_isupper.c
19 lines (18 loc) · 979 Bytes
/
ft_isupper.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_isupper.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ggladkov <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2017/02/27 12:57:38 by ggladkov #+# #+# */
/* Updated: 2017/02/27 22:08:47 by ggladkov ### ########.fr */
/* */
/* ************************************************************************** */
int ft_isupper(int c)
{
if (c >= 'A' && c <= 'Z')
return (1);
else
return (0);
}