Lines Matching refs:str1
406 idn_ucs4_strcmp(const unsigned long *str1, const unsigned long *str2) {
407 while (*str1 != '\0') {
408 if (*str1 > *str2)
410 else if (*str1 < *str2)
412 str1++;
416 if (*str1 > *str2)
418 else if (*str1 < *str2)
425 idn_ucs4_strcasecmp(const unsigned long *str1, const unsigned long *str2) {
428 while (*str1 != '\0') {
429 c1 = ASCII_TOLOWER(*str1);
435 str1++;
439 c1 = ASCII_TOLOWER(*str1);