Searched refs:utf8_lead (Results 1 – 1 of 1) sorted by relevance
670 #define utf8_lead(c) ((c) < 0x80 || ((c) >= 0xC2 && (c) <= 0xF4)) macro705 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 8 milliseconds