Searched refs:utf_cont (Results 1 – 1 of 1) sorted by relevance
112 #define utf_cont(ch) (((ch) & 0xc0) == 0x80) macro131 if (str >= end || !utf_cont(*str)) return UTF8PROC_ERROR_INVALIDUTF8; in utf8proc_iterate()136 if ((str + 1 >= end) || !utf_cont(*str) || !utf_cont(str[1])) in utf8proc_iterate()149 if ((str + 2 >= end) || !utf_cont(*str) || !utf_cont(str[1]) || !utf_cont(str[2])) in utf8proc_iterate()