MCPcopy Create free account
hub / github.com/MyGUI/mygui / toupper

Function toupper

MyGUIEngine/src/msdfgen/main.cpp:62–64  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

60}
61
62static char toupper(char c) {
63 return c >= 'a' && c <= 'z' ? c-'a'+'A' : c;
64}
65
66static bool parseUnsigned(unsigned &value, const char *arg) {
67 char *end = NULL;

Callers 2

cmpExtensionFunction · 0.85
stringToUpperCaseMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected