Home | Info | Community | Development | myReactOS | Contact Us
[static]
xmlListLinkReverseSearch: : a list : a data
Search data in the list processing backward
Returns the link containing the data or NULL
Definition at line 163 of file list.c.
Referenced by xmlListRemoveLast(), and xmlListReverseSearch().
{ xmlLinkPtr lk; if (l == NULL) return(NULL); lk = xmlListHigherSearch(l, data); if (lk == l->sentinel) return NULL; else { if (l->linkCompare(lk->data, data) ==0) return lk; return NULL; } }