Home
last modified time | relevance | path

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

/src/contrib/less/
H A Dcharset.h17 #define IS_UTF8_INVALID(c) (((c) & 0xFE) == 0xFE) macro
18 #define IS_UTF8_LEAD(c) (((c) & 0xC0) == 0xC0 && !IS_UTF8_INVALID(c))
H A Dcharset.c617 if (IS_UTF8_INVALID(s0)) in is_utf8_well_formed()