-
Notifications
You must be signed in to change notification settings - Fork 1
/
ft_toupper.c
18 lines (17 loc) · 987 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: ksmorozo <ksmorozo@student.codam.nl> +#+ */
/* +#+ */
/* Created: 2020/10/30 17:12:06 by ksmorozo #+# #+# */
/* Updated: 2020/12/03 00:12:12 by anonymous ######## odam.nl */
/* */
/* ************************************************************************** */
int ft_toupper(int arg)
{
if (arg >= 'a' && arg <= 'z')
return (arg - 32);
return (arg);
}