Searched defs:SDL_tolower (Results 1 – 2 of 2) sorted by relevance
468 int SDL_tolower(int x) { return tolower(x); } in SDL_tolower() function475 int SDL_tolower(int x) { return ((x) >= 'A') && ((x) <= 'Z') ? ('a'+((x)-'A')) : (x); } in SDL_tolower() function
385 #define SDL_tolower SDL_tolower_REAL macro
Completed in 7 milliseconds