tolower           168 core/lib_thumb.c int tolower(int c) { return isupper(c) ? c | 0x20 : c; }
tolower            33 platform/generic/wrappers.c int tolower(int c) { return _tolower(c); }