Home | Info | Community | Development | myReactOS | Contact Us
xsltTestCompMatchList: : a XSLT process context : a node : the precompiled pattern list
Test whether the node matches one of the patterns in the list
Returns 1 if it matches, 0 if it doesn't and -1 in case of failure
Definition at line 1204 of file pattern.c.
Referenced by xsltNumberFormatGetAnyLevel(), and xsltNumberFormatGetMultipleLevel().
{ int ret; if ((ctxt == NULL) || (node == NULL)) return(-1); while (comp != NULL) { ret = xsltTestCompMatch(ctxt, comp, node, NULL, NULL); if (ret == 1) return(1); comp = comp->next; } return(0); }