-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_toupper.c
18 lines (17 loc) · 975 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: mesafi <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/03/30 15:34:19 by mesafi #+# #+# */
/* Updated: 2020/01/20 13:32:01 by mesafi ### ########.fr */
/* */
/* ************************************************************************** */
int ft_toupper(int ch)
{
if (ch >= 'a' && ch <= 'z')
ch -= 32;
return (ch);
}