Home
last modified time | relevance | path

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

/netbsd-src/external/ibm-public/postfix/dist/src/util/
H A Dstringops.h74 #define CASEF_FLAG_UTF8 (1<<0) macro
82 casefoldx(util_utf8_enable ? CASEF_FLAG_UTF8 : 0, (dst), (src), -1)
84 casefoldx(util_utf8_enable ? CASEF_FLAG_UTF8 : 0, (dst), (src), (len))
86 casefoldx((util_utf8_enable ? CASEF_FLAG_UTF8 : 0) | CASEF_FLAG_APPEND, \
90 strcasecmp_utf8x(util_utf8_enable ? CASEF_FLAG_UTF8 : 0, (s1), (s2))
92 strncasecmp_utf8x(util_utf8_enable ? CASEF_FLAG_UTF8 : 0, (s1), (s2), (l))
H A Dstrcasecmp_utf8.c119 flags &= CASEF_FLAG_UTF8; in strcasecmp_utf8x()
149 flags &= CASEF_FLAG_UTF8; in strncasecmp_utf8x()
173 flags = CASEF_FLAG_UTF8; in main()
H A Dcasefold.c159 if ((flags & CASEF_FLAG_UTF8) == 0 || allascii(src)) { in casefoldx()