Searched defs:ISSPACE (Results 1 – 5 of 5) sorted by relevance
45 #define ISSPACE(x) (ISBLANK(x) || (((x) >= 0xa) && ((x) <= 0x0d))) macro
124 #define ISSPACE(x) ((x) <= ' ') /* Not conventional - but works fine! */ 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