libft
Loading...
Searching...
No Matches
ft_toupper.c
Go to the documentation of this file.
1/* ************************************************************************** */
2/* */
3/* ::: :::::::: */
4/* ft_toupper.c :+: :+: :+: */
5/* +:+ +:+ +:+ */
6/* By: tspoof <tspoof@student.hive.fi> +#+ +:+ +#+ */
7/* +#+#+#+#+#+ +#+ */
8/* Created: 2022/10/31 10:55:44 by tspoof #+# #+# */
9/* Updated: 2022/10/31 11:01:31 by tspoof ### ########.fr */
10/* */
11/* ************************************************************************** */
12
13int ft_toupper(int c)
14{
15 if (c >= 'a' && c <= 'z')
16 {
17 return (c - 32);
18 }
19 return (c);
20}
int ft_toupper(int c)
Changes char to uppercase.
Definition ft_toupper.c:13