1#include <ctype.h>
2
3int toupper(int c) {
4    if (islower(c))
5        return c & 0x5f;
6    return c;
7}
8