pub unsafe extern "C" fn fz_xml_find_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 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.