ft_malloc/libft/ft_toupper.c
2025-11-28 19:50:58 +01:00

18 lines
977 B
C
Executable file

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_toupper.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: thrieg <thrieg@student.42mulhouse.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/10/14 16:43:04 by thrieg #+# #+# */
/* Updated: 2025/02/16 19:05:27 by thrieg ### ########.fr */
/* */
/* ************************************************************************** */
int ft_toupper(int c)
{
if (c >= 'a' && c <= 'z')
return (c - 32);
return (c);
}