| 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'); } |
| 447 | int SDL_isspace(int x) { return ((x) == ' ') || ((x) == '\t') || ((x) == '\r') || ((x) == '\n') || ((x) == '\f') || ((x) == '\v'); } |
no outgoing calls
no test coverage detected