| 61 | } |
| 62 | |
| 63 | static BOOL IsLeadSurrogateUTF16(unsigned short c) { return c >= 0xd800 && c <= 0xdbff; } |
| 64 | static BOOL IsTrailSurrogateUTF16(unsigned short c) { return c >= 0xdc00 && c <= 0xdfff; } |
| 65 | |
| 66 | static PWSTR MyCharNext(PCWSTR p) |
no outgoing calls
no test coverage detected