fxlibc/src/libc/ctype/toupper.c

8 lines
95 B
C
Raw Normal View History

#include <ctype.h>
#undef toupper
int toupper(int c)
{
return islower(c) ? (c & 0xdf) : c;
}