fxlibc/src/libc/ctype/tolower.c

8 lines
95 B
C

#include <ctype.h>
#undef tolower
int tolower(int c)
{
return isupper(c) ? (c | 0x20) : c;
}