-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_toupper.c
executable file
·18 lines (17 loc) · 969 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: mmasstou <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/11/03 13:30:55 by mmasstou #+# #+# */
/* Updated: 2021/11/03 13:31:24 by mmasstou ### ########.fr */
/* */
/* ************************************************************************** */
int ft_toupper(int u)
{
if (u >= 'a' && u <= 'z')
u -= 32;
return (u);
}