pub unsafe extern "C" fn fz_xml_find_next_match(
    item: *mut fz_xml,
    tag: *const c_char,
    att: *const c_char,
    match_: *const c_char
) -> *mut fz_xml
Expand description

Search the siblings of XML nodes starting with the first sibling of item looking for the first with the given tag (or any tag if tag is NULL), and with a matching attribute.

Return NULL if none found.