18 lines
977 B
C
Executable file
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);
|
|
}
|