Home
last modified time | relevance | path

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

/dports/mail/postfix-current/postfix-3.7-20211107/src/util/
H A Dstringops.h65 #define CASEF_FLAG_UTF8 (1<<0) macro
73 casefoldx(util_utf8_enable ? CASEF_FLAG_UTF8 : 0, (dst), (src), -1)
75 casefoldx(util_utf8_enable ? CASEF_FLAG_UTF8 : 0, (dst), (src), (len))
77 casefoldx((util_utf8_enable ? CASEF_FLAG_UTF8 : 0) | CASEF_FLAG_APPEND, \
81 strcasecmp_utf8x(util_utf8_enable ? CASEF_FLAG_UTF8 : 0, (s1), (s2))
83 strncasecmp_utf8x(util_utf8_enable ? CASEF_FLAG_UTF8 : 0, (s1), (s2), (l))
H A Dstrcasecmp_utf8.c117 flags &= CASEF_FLAG_UTF8; in strcasecmp_utf8x()
147 flags &= CASEF_FLAG_UTF8; in strncasecmp_utf8x()
171 flags = CASEF_FLAG_UTF8; in main()
H A Dcasefold.c157 if ((flags & CASEF_FLAG_UTF8) == 0 || allascii(src)) { in casefoldx()