| 94 | state ( false ), idlerID ( 0 ) {} |
| 95 | |
| 96 | static inline bool IsControlCharacter ( int ch ) |
| 97 | { |
| 98 | // iscntrl returns true for lots of chars > 127 which are displayable |
| 99 | return ch >= 0 && ch < ' '; |
| 100 | } |
| 101 | |
| 102 | static inline bool IsAllSpacesOrTabs ( char *s, unsigned int len ) |
| 103 | { |
no outgoing calls
no test coverage detected