Home | History | Annotate | Download | only in libxml2

Lines Matching full:expstr

359 static int xmlRegStrEqualWildcard(const xmlChar *expStr, const xmlChar *valStr);
3629 * @expStr: the string to be evaluated
3634 * substrings in both @expStr and @valStr.
3641 xmlRegStrEqualWildcard(const xmlChar *expStr, const xmlChar *valStr) {
3642 if (expStr == valStr) return(1);
3643 if (expStr == NULL) return(0);
3649 if (*expStr != *valStr) {
3655 valStr = expStr;
3656 expStr = tmp;
3658 if ((*valStr != 0) && (*expStr != 0) && (*expStr++ == '*')) {
3668 expStr++;
3671 if (*expStr != 0)