#[unsafe(no_mangle)]pub unsafe extern "C" fn xmlTextWriterWriteRaw(
writer: *mut XmlTextWriter,
content: *const xmlChar,
) -> c_intExpand description
Write raw content (no XML escaping).
§UPSTREAM-PARITY
int xmlTextWriterWriteRaw(xmlTextWriterPtr writer, const xmlChar *content);Performs the upstream state-dependent transitions before the content: DTD -> “ [“ (+newline when indented), DTD_ELEM/DTD_ATTL -> “ “, DTD_ENTY/PENT -> “ “ + quote char, PI -> “ “.
§SAFETY
writermust be a valid pointer to anXmlTextWriteror NULL.contentmust be a valid null-terminated xmlChar string or NULL.