Home
last modified time | relevance | path

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

/PHP-5.3/ext/xml/
H A Dxml.c670 #define utf8_lead(c) ((c) < 0x80 || ((c) >= 0xC2 && (c) <= 0xF4)) macro
705 MB_FAILURE(pos, utf8_lead(str[pos + 1]) ? 1 : 2); in php_next_utf8_char()
717 if (avail < 2 || utf8_lead(str[pos + 1])) in php_next_utf8_char()
719 else if (avail < 3 || utf8_lead(str[pos + 2])) in php_next_utf8_char()
738 if (avail < 2 || utf8_lead(str[pos + 1])) in php_next_utf8_char()
740 else if (avail < 3 || utf8_lead(str[pos + 2])) in php_next_utf8_char()
742 else if (avail < 4 || utf8_lead(str[pos + 3])) in php_next_utf8_char()

Completed in 15 milliseconds