Lines Matching refs:str
88 idn__util_asciihaveaceprefix(const char *str, const char *prefix) {
89 assert(str != NULL && prefix != NULL);
92 if (ASCII_TOLOWER(*str) != ASCII_TOLOWER(*prefix))
94 str++;
102 idn__util_ucs4haveaceprefix(const unsigned long *str, const char *prefix) {
103 assert(str != NULL && prefix != NULL);
106 if (ASCII_TOLOWER(*str) != ASCII_TOLOWER(*prefix))
108 str++;
116 idn__util_ucs4isasciirange(const unsigned long *str) {
117 while (*str != '\0') {
118 if (*str > 0x7f)
120 str++;
129 char *str, size_t length)
138 name != NULL && str != NULL);
153 &type, (LPBYTE)str, &len);