Searched refs:SDL_toupper (Results 1 – 6 of 6) sorted by relevance
170 if ( SDL_toupper((unsigned char)*str1) != in IMG_string_equals()171 SDL_toupper((unsigned char)*str2) ) in IMG_string_equals()
648 *bufp = SDL_toupper((unsigned char) *bufp); in SDL_strupr()1024 a = SDL_toupper((unsigned char) *str1); in SDL_strcasecmp()1025 b = SDL_toupper((unsigned char) *str2); in SDL_strcasecmp()1031 a = SDL_toupper(*str1); in SDL_strcasecmp()1032 b = SDL_toupper(*str2); in SDL_strcasecmp()
467 int SDL_toupper(int x) { return toupper(x); } in SDL_toupper() function474 int SDL_toupper(int x) { return ((x) >= 'a') && ((x) <= 'z') ? ('A'+((x)-'a')) : (x); } in SDL_toupper() function
414 extern DECLSPEC int SDLCALL SDL_toupper(int x);
384 #define SDL_toupper SDL_toupper_REAL macro
415 SDL_DYNAPI_PROC(int,SDL_toupper,(int a),(a),return)
Completed in 19 milliseconds