-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_isupper.c
executable file
·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: akharrou <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/02/18 19:07:16 by akharrou #+# #+# */
/* Updated: 2019/03/22 12:40:06 by akharrou ### ########.fr */
/* */
/* ************************************************************************** */
int ft_isupper(int c)
{
return ('A' <= c && c <= 'Z');
}