Lines Matching refs:str2
394 xmlC14NStrEqual(const xmlChar *str1, const xmlChar *str2) {395 if (str1 == str2) return(1);396 if (str1 == NULL) return((*str2) == '\0');397 if (str2 == NULL) return((*str1) == '\0');399 if (*str1++ != *str2) return(0);400 } while (*str2++);