-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_isupper.c
16 lines (15 loc) · 951 Bytes
/
ft_isupper.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_isupper.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: hezzahir <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2018/11/04 23:56:00 by hezzahir #+# #+# */
/* Updated: 2018/11/04 23:58:44 by hezzahir ### ########.fr */
/* */
/* ************************************************************************** */
int ft_isupper(int c)
{
return (c <= 'Z' && c >= 'A');
}