Home | History | Annotate | Download | only in lib

Lines Matching full:set1

1353 /* Compare two node sets SET1 and SET2.
1354 Return true if SET1 and SET2 are equivalent. */
1358 re_node_set_compare (const re_node_set *set1, const re_node_set *set2)
1361 if (set1 == NULL || set2 == NULL || set1->nelem != set2->nelem)
1363 for (i = set1->nelem ; REG_VALID_INDEX (--i) ; )
1364 if (set1->elems[i] != set2->elems[i])