#[unsafe(no_mangle)]pub unsafe extern "C" fn xmlTextWriterWriteString(
writer: *mut XmlTextWriter,
content: *const xmlChar,
) -> c_intExpand description
Write text content.
§UPSTREAM-PARITY
int xmlTextWriterWriteString(xmlTextWriterPtr writer, const xmlChar *content);NAME/TEXT states escape via xmlEncodeSpecialChars (quotes included); ATTRIBUTE escapes via xmlBufAttrSerializeTxtContent (qchar-aware); all other states (CDATA/comment/PI/DTD*) write raw through WriteRaw, which performs the DTD state transitions.
§SAFETY
writermust be a valid pointer to anXmlTextWriteror NULL.contentmust be a valid null-terminated xmlChar string or NULL.