-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_isupper.c
16 lines (15 loc) · 948 Bytes
/
ft_isupper.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_isupper.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: sebasnadu <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/07/04 16:49:58 by sebasnadu #+# #+# */
/* Updated: 2024/02/04 23:13:00 by sebasnadu ### ########.fr */
/* */
/* ************************************************************************** */
int ft_isupper(int c)
{
return (c >= 65 && c <= 90);
}