Home | Info | Community | Development | myReactOS | Contact Us
[static]
Definition at line 391 of file c14n.c.
Referenced by xmlC14NVisibleNsStackFind(), and xmlExcC14NVisibleNsStackFind().
00391 { 00392 if (str1 == str2) return(1); 00393 if (str1 == NULL) return((*str2) == '\0'); 00394 if (str2 == NULL) return((*str1) == '\0'); 00395 do { 00396 if (*str1++ != *str2) return(0); 00397 } while (*str2++); 00398 return(1); 00399 }