Lines Matching defs:prefix
88 idn__util_asciihaveaceprefix(const char *str, const char *prefix) {
89 assert(str != NULL && prefix != NULL);
91 while (*prefix != '\0') {
92 if (ASCII_TOLOWER(*str) != ASCII_TOLOWER(*prefix))
95 prefix++;
102 idn__util_ucs4haveaceprefix(const unsigned long *str, const char *prefix) {
103 assert(str != NULL && prefix != NULL);
105 while (*prefix != '\0') {
106 if (ASCII_TOLOWER(*str) != ASCII_TOLOWER(*prefix))
109 prefix++;