libft/src/ft_toupper.c
2023-10-26 18:06:04 +02:00

21 lines
992 B
C

/* ************************************************************************** */
/* */
/* :::::::: */
/* ft_toupper.c :+: :+: */
/* +:+ */
/* By: djonker <marvin@codam.nl> +#+ */
/* +#+ */
/* Created: 2020/11/01 19:10:41 by djonker #+# #+# */
/* Updated: 2023/10/18 17:00:24 by houtworm ######## odam.nl */
/* */
/* ************************************************************************** */
#include "../libft.h"
int ft_toupper(int c)
{
if (ft_islowc(c))
return (c - 32);
return (c);
}