12 if(BytesPerChar) *BytesPerChar = 1;
20 a = ((p[0] & 0xe0) == 0xc0) && ((p[1] & 0xc0) == 0x80);
23 b = ((p[0] & 0xf0) == 0xe0) && ((p[1] & 0xc0) == 0x80) && ((p[2] & 0xc0) == 0x80);
26 c = ((p[0] & 0xf8) == 0xf0) && ((p[1] & 0xc0) == 0x80) && ((p[2] & 0xc0) == 0x80) && ((p[3] & 0xc0) == 0x80);
29 if(BytesPerChar) *BytesPerChar = bpc;
bool isUTF8Char(const byte *p, byte *BytesPerChar)