Files
semi-libc/src/ctype/toupper.c
T

8 lines
88 B
C

#include <ctype.h>
int toupper(int c)
{
if (islower(c)) return c & 0x5f;
return c;
}