Searched defs:IsSpace (Results 1 – 7 of 7) sorted by relevance
36 EAS_INLINE EAS_I8 IsSpace (EAS_I8 c) { return (((c >= 9) && (c <= 13)) || (c == ' ')); } in IsSpace() function
181 static bool IsSpace(char ch) { in IsSpace() function
84 bool IsSpace(uint16_t c) { return (0x9 <= c && c <= 0xD) || c == 0x20; } in IsSpace() function
144 bool IsSpace(uint16_t word) { in IsSpace() function
483 INLINE bool IsSpace(int c) { in IsSpace() function
180 #define IsSpace(X) isspace((unsigned char)X) macro
186 #define IsSpace(X) isspace((unsigned char)X) macro