Home
last modified time | relevance | path

Searched defs:SDL_tolower (Results 1 – 2 of 2) sorted by relevance

/AliOS-Things-master/components/SDL2/src/stdlib/
A DSDL_stdlib.c468 int SDL_tolower(int x) { return tolower(x); } in SDL_tolower() function
475 int SDL_tolower(int x) { return ((x) >= 'A') && ((x) <= 'Z') ? ('a'+((x)-'A')) : (x); } in SDL_tolower() function
/AliOS-Things-master/components/SDL2/src/dynapi/
A DSDL_dynapi_overrides.h385 #define SDL_tolower SDL_tolower_REAL macro

Completed in 7 milliseconds