Searched defs:ISSPACE (Results 1 – 7 of 7) sorted by relevance
45 #define ISSPACE(x) (ISBLANK(x) || (((x) >= 0xa) && ((x) <= 0x0d))) macro
45 #define ISSPACE(c) Py_ISSPACE(c) macro
124 #define ISSPACE(x) ((x) <= ' ') /* Not conventional - but works fine! */ macro
98 #define ISSPACE(c) _sch_test(c, _sch_isspace) macro
275 #define ISSPACE(x) (isspace((int) ((unsigned char)x))) macro
949 static inline bool ISSPACE (unsigned char c) in ISSPACE() function
154 #define ISSPACE(c) (isascii (c) && isspace (c)) macro