Does character introduce a multicharacter character? */
| 769 | |
| 770 | /** Does character introduce a multicharacter character? */ |
| 771 | static inline bool IsLeadByte(tchar_t ch) |
| 772 | { |
| 773 | #ifdef UNICODE |
| 774 | return false; |
| 775 | #else |
| 776 | return _getmbcp() && IsDBCSLeadByte(ch); |
| 777 | #endif |
| 778 | } |
| 779 | |
| 780 | /** |
| 781 | * @brief Is it whitespace (excludes all lead & trail bytes)? |