| 441 | int SDL_isupper(int x) { return isupper(x); } |
| 442 | int SDL_islower(int x) { return islower(x); } |
| 443 | int SDL_toupper(int x) { return toupper(x); } |
| 444 | int SDL_tolower(int x) { return tolower(x); } |
| 445 | #else |
| 446 | int SDL_isdigit(int x) { return ((x) >= '0') && ((x) <= '9'); } |
no outgoing calls
no test coverage detected