Skip to main content

xmlTextWriterWriteString

Function xmlTextWriterWriteString 

Source
#[unsafe(no_mangle)]
pub unsafe extern "C" fn xmlTextWriterWriteString( writer: *mut XmlTextWriter, content: *const xmlChar, ) -> c_int
Expand description

Write text content (with XML escaping).

§UPSTREAM-PARITY

int xmlTextWriterWriteString(xmlTextWriterPtr writer, const xmlChar *content);

§SAFETY

  • writer must be a valid pointer to an XmlTextWriter or NULL.
  • content must be a valid null-terminated xmlChar string or NULL.