| 754 | |
| 755 | |
| 756 | bool IntlUtil::isAttributeEscape(Jrd::CharSet* cs, const UCHAR* s, ULONG size) |
| 757 | { |
| 758 | UCHAR uc[sizeof(ULONG)]; |
| 759 | const ULONG uSize = cs->getConvToUnicode().convert(size, s, sizeof(uc), uc); |
| 760 | |
| 761 | return (uSize == 2 && *(USHORT*) uc == '\\'); |
| 762 | } |
| 763 | |
| 764 | |
| 765 | bool IntlUtil::readAttributeChar(Jrd::CharSet* cs, const UCHAR** s, const UCHAR* end, ULONG* size, bool returnEscape) |
nothing calls this directly
no test coverage detected