Function xmlTextReaderIsEmptyElement
Source #[unsafe(no_mangle)]
pub unsafe extern "C" fn xmlTextReaderIsEmptyElement(
reader: *mut XmlTextReader,
) -> c_int
Expand description
Check if the current element is an empty element (no children).
Returns 1 if empty, 0 otherwise.
§UPSTREAM-PARITY
int xmlTextReaderIsEmptyElement(xmlTextReaderPtr reader);
§Safety
reader must be a valid pointer or NULL.