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