Home
last modified time | relevance | path

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

/php-src/ext/standard/
H A Dhtml.c69 #define utf8_lead(c) ((c) < 0x80 || ((c) >= 0xC2 && (c) <= 0xF4)) macro
128 MB_FAILURE(pos, utf8_lead(str[pos + 1]) ? 1 : 2); in get_next_char()
140 if (avail < 2 || utf8_lead(str[pos + 1])) in get_next_char()
142 else if (avail < 3 || utf8_lead(str[pos + 2])) in get_next_char()
161 if (avail < 2 || utf8_lead(str[pos + 1])) in get_next_char()
163 else if (avail < 3 || utf8_lead(str[pos + 2])) in get_next_char()
165 else if (avail < 4 || utf8_lead(str[pos + 3])) in get_next_char()

Completed in 13 milliseconds