Files
libft/ft_toupper.c

9 lines
97 B
C

#include "libft.h"
int ft_toupper(int c)
{
if ('a' <= c && c <= 'z')
c -= 32;
return (c);
}