-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_toupper.c
22 lines (20 loc) · 1004 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_toupper.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: aceauses <[email protected]. +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/03/14 12:28:33 by aceauses #+# #+# */
/* Updated: 2023/03/20 18:40:27 by aceauses ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
int ft_toupper(int str)
{
if (str >= 97 && str <= 122)
{
str -= 32;
}
return (str);
}