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

Function SDL_tolower

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

Source from the content-addressed store, hash-verified

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'); }
447int SDL_isspace(int x) { return ((x) == ' ') || ((x) == '\t') || ((x) == '\r') || ((x) == '\n') || ((x) == '\f') || ((x) == '\v'); }

Callers 3

SDL_strlwrFunction · 0.85
SDL_strncasecmpFunction · 0.85
SDL_vsscanfFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected