-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathft_toupper.c
19 lines (18 loc) · 985 Bytes
/
ft_toupper.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_toupper.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: smonroe <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2018/04/16 06:54:05 by smonroe #+# #+# */
/* Updated: 2018/04/16 06:55:51 by smonroe ### ########.fr */
/* */
/* ************************************************************************** */
int ft_toupper(int c)
{
if (c >= 'a' && c <= 'z')
return (c - 32);
else
return (c);
}