MCPcopy Create free account
hub / github.com/RavEngine/RavEngine / SDL_isspace

Function SDL_isspace

deps/SDL2/src/stdlib/SDL_stdlib.c:440–440  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

438#if defined(HAVE_CTYPE_H)
439int SDL_isdigit(int x) { return isdigit(x); }
440int SDL_isspace(int x) { return isspace(x); }
441int SDL_isupper(int x) { return isupper(x); }
442int SDL_islower(int x) { return islower(x); }
443int SDL_toupper(int x) { return toupper(x); }

Callers 3

WatchJoystickFunction · 0.85
SDL_vsscanfFunction · 0.85
GetDeviceInfoFunction · 0.85

Calls

no outgoing calls

Tested by 1

WatchJoystickFunction · 0.68