#[unsafe(no_mangle)]pub unsafe extern "C" fn xmlTextWriterStartDocument(
writer: *mut XmlTextWriter,
version: *const c_char,
encoding: *const c_char,
standalone: *const c_char,
) -> c_intExpand description
Start an XML document.
Writes the XML declaration <?xml version="..." encoding="..." standalone="..."?>.
§UPSTREAM-PARITY
int xmlTextWriterStartDocument(xmlTextWriterPtr writer,
const char *version,
const char *encoding,
const char *standalone);§SAFETY
writermust be a valid pointer to anXmlTextWriteror NULL.version,encoding,standalonemust be valid null-terminated strings or NULL.