toupper           169 core/lib_thumb.c int toupper(int c) { return islower(c) ? c & ~0x20 : c; }
toupper            34 platform/generic/wrappers.c int toupper(int c) { return _toupper(c); }