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