Searched refs:SDL_isspace (Results 1 – 8 of 8) sorted by relevance
988 while (SDL_isspace((unsigned char)*(p))) \994 while (!SDL_isspace((unsigned char)*(p)) && *p) \
86 } while ( SDL_isspace(ch) ); in ReadNumber()
1095 while (SDL_isspace((unsigned char) *text)) { in SDL_vsscanf()1148 while (SDL_isspace((unsigned char) *text)) { in SDL_vsscanf()1314 while (!SDL_isspace((unsigned char) *text)) { in SDL_vsscanf()1324 while (!SDL_isspace((unsigned char) *text)) { in SDL_vsscanf()
464 int SDL_isspace(int x) { return isspace(x); } in SDL_isspace() function471 int SDL_isspace(int x) { return ((x) == ' ') || ((x) == '\t') || ((x) == '\r') || ((x) == '\n') || … in SDL_isspace() function
577 while (SDL_isspace(trimmed_name[0])) { in WatchJoystick()580 while (trimmed_name[0] && SDL_isspace(trimmed_name[SDL_strlen(trimmed_name) - 1])) { in WatchJoystick()
411 extern DECLSPEC int SDLCALL SDL_isspace(int x);
383 #define SDL_isspace SDL_isspace_REAL macro
414 SDL_DYNAPI_PROC(int,SDL_isspace,(int a),(a),return)
Completed in 24 milliseconds