forked from nicolas-arnaud/Minishell
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
981 B
19 lines
981 B
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_toupper.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: narnaud <narnaud@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2021/10/18 17:02:28 by narnaud #+# #+# */
|
|
/* Updated: 2021/10/19 12:36:28 by narnaud ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
int ft_toupper(int c)
|
|
{
|
|
if (c > 96 && c < 123)
|
|
return (c - 32);
|
|
else
|
|
return (c);
|
|
}
|
|
|