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

/freebsd-11-stable/contrib/subversion/subversion/libsvn_subr/utf8proc/
H A Dutf8proc.c112 #define utf_cont(ch) (((ch) & 0xc0) == 0x80) macro
131 if (str >= end || !utf_cont(*str)) return UTF8PROC_ERROR_INVALIDUTF8;
136 if ((str + 1 >= end) || !utf_cont(*str) || !utf_cont(str[1]))
149 if ((str + 2 >= end) || !utf_cont(*str) || !utf_cont(str[1]) || !utf_cont(str[2]))

Completed in 112 milliseconds