* @brief Is it whitespace (excludes all lead & trail bytes)? */
| 781 | * @brief Is it whitespace (excludes all lead & trail bytes)? |
| 782 | */ |
| 783 | static inline bool |
| 784 | isSafeWhitespace(tchar_t ch) |
| 785 | { |
| 786 | return tc::istspace((unsigned)ch) && !IsLeadByte(ch) && (ch != '\r' && ch != '\n'); |
| 787 | } |
| 788 | |
| 789 | /** |
| 790 | * @brief Is it a non-whitespace wordbreak character (ie, punctuation)? |
no test coverage detected