blob: 2422099362b9361b7dca721e238359d7ff07a752 [file] [log] [blame]
#include <ctype.h>
int toupper(int c) {
if (islower(c))
return c & 0x5f;
return c;
}