Home
last modified time | relevance | path

Searched refs:utf_cont (Results 1 – 1 of 1) sorted by relevance

/third_party/ejdb/src/util/
Dutf8proc.c114 #define utf_cont(ch) (((ch) & 0xc0) == 0x80) macro
138 if ((str >= end) || !utf_cont(*str)) { in utf8proc_iterate()
145 if ((str + 1 >= end) || !utf_cont(*str) || !utf_cont(str[1])) { in utf8proc_iterate()
161 if ((str + 2 >= end) || !utf_cont(*str) || !utf_cont(str[1]) || !utf_cont(str[2])) { in utf8proc_iterate()