// helper functions
+// The number of bytes to skip to find the next character in the string
+static const char utf8_skip[256] = {
+ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
+ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
+ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
+ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
+ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
+ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
+ 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,
+ 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,4,4,4,4,4,4,4,4,5,5,5,5,6,6,1,1
+};
+
// takes a pointer into a utf8 string and returns a unicode character for the
// first character at the pointer
unichar utf8_get_char (const char *p)
ustring::size_type offset = 0;
while (str < pos) {
- str += utf8_skip[*str];
+ str += utf8_skip[static_cast<unsigned char>(*str)];
offset++;
}
const char *utf8_offset_to_ptr(const char *str, ustring::size_type offset)
{
while (offset--)
- str += utf8_skip[*str];
+ str += utf8_skip[static_cast<unsigned char>(*str)];
return str;
}
if(*p == '\0')
return ustring::npos;
- p += utf8_skip[*p];
+ p += utf8_skip[static_cast<unsigned char>(*p)];
}
return (p - str);
if(p >= pend)
return ustring::npos;
- p += utf8_skip[*p];
+ p += utf8_skip[static_cast<unsigned char>(*p)];
}
return (p - str);