-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_isupper.c
16 lines (15 loc) · 958 Bytes
/
ft_isupper.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_islower.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: cprune <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2015/12/08 11:14:03 by cprune #+# #+# */
/* Updated: 2015/12/08 11:17:01 by cprune ### ########.fr */
/* */
/* ************************************************************************** */
int ft_isupper(int c)
{
return ((c >= 65 && c <= 90 ? 1 : 0));
}