-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_toupper.c
18 lines (17 loc) · 976 Bytes
/
ft_toupper.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_toupper.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: almarcos <almarcos@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/07/22 16:15:49 by almarcos #+# #+# */
/* Updated: 2023/07/25 15:37:41 by almarcos ### ########.fr */
/* */
/* ************************************************************************** */
int ft_toupper(int c)
{
if (c >= 97 && c <= 122)
return (c - 32);
return (c);
}