MCPcopy Create free account
hub / github.com/RavEngine/RavEngine / SDL_toupper

Function SDL_toupper

deps/SDL2/src/stdlib/SDL_stdlib.c:443–443  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

441int SDL_isupper(int x) { return isupper(x); }
442int SDL_islower(int x) { return islower(x); }
443int SDL_toupper(int x) { return toupper(x); }
444int SDL_tolower(int x) { return tolower(x); }
445#else
446int SDL_isdigit(int x) { return ((x) >= '0') && ((x) <= '9'); }

Callers 2

SDL_struprFunction · 0.85
SDL_strcasecmpFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected