Files
42_INT_10_cube3d/libs/libft/testing/srcs/test_toupper.c
2022-05-04 14:38:34 +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);
}