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