19 lines
977 B
C
19 lines
977 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_toupper.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: pbonilla <eirodeis.lepnj@gmail.com> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2020/10/25 17:04:47 by pbonilla #+# #+# */
|
|
/* Updated: 2020/10/25 17:09:00 by pbonilla ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
int ft_toupper(int c)
|
|
{
|
|
if (c >= 'a' && c <= 'z')
|
|
return (c - 32);
|
|
return (c);
|
|
}
|