21 lines
997 B
C
21 lines
997 B
C
|
/* ************************************************************************** */
|
||
|
/* */
|
||
|
/* ::: :::::::: */
|
||
|
/* ft_toupper.c :+: :+: :+: */
|
||
|
/* +:+ +:+ +:+ */
|
||
|
/* By: cchauvet <cchauvet@student.42angoulem +#+ +:+ +#+ */
|
||
|
/* +#+#+#+#+#+ +#+ */
|
||
|
/* Created: 2022/09/26 12:38:07 by cchauvet #+# #+# */
|
||
|
/* Updated: 2022/09/27 11:04:06 by cchauvet ### ########.fr */
|
||
|
/* */
|
||
|
/* ************************************************************************** */
|
||
|
|
||
|
#include "libft.h"
|
||
|
|
||
|
int ft_toupper(int c)
|
||
|
{
|
||
|
if (c >= 'a' && 'z' >= c)
|
||
|
return (c - 48);
|
||
|
return (c);
|
||
|
}
|