-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_toupper.c
19 lines (18 loc) · 984 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: jvan-hal <[email protected]> +#+ */
/* +#+ */
/* Created: 2022/10/03 18:52:31 by jvan-hal #+# #+# */
/* Updated: 2022/10/21 14:39:56 by jvan-hal ######## odam.nl */
/* */
/* ************************************************************************** */
int ft_toupper(int c)
{
if (c >= 'a' && c <= 'z')
return (c - 32);
else
return (c);
}