Home
last modified time | relevance | path

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

/AliOS-Things-master/components/SDL2/src/stdlib/
A DSDL_stdlib.c467 int SDL_toupper(int x) { return toupper(x); } in SDL_toupper() function
474 int SDL_toupper(int x) { return ((x) >= 'a') && ((x) <= 'z') ? ('A'+((x)-'a')) : (x); } in SDL_toupper() function
/AliOS-Things-master/components/SDL2/src/dynapi/
A DSDL_dynapi_overrides.h384 #define SDL_toupper SDL_toupper_REAL macro

Completed in 8 milliseconds