Files
42_INT_01_libft/testing/srcs/test_toupper.c
2021-08-10 16:40:52 +02:00

8 lines
106 B
C

char touppercase(unsigned int i, char c)
{
if (i < 3 && c >= 'a' && c <= 'z')
c -= 32;
return (c);
}