Function xmlTextWriterWritePI
Source #[unsafe(no_mangle)]
pub unsafe extern "C" fn xmlTextWriterWritePI(
writer: *mut XmlTextWriter,
target: *const xmlChar,
content: *const xmlChar,
) -> c_int
Expand description
Write a processing instruction.
§UPSTREAM-PARITY
int xmlTextWriterWritePI(xmlTextWriterPtr writer,
const xmlChar *target,
const xmlChar *content);
§SAFETY
writer must be a valid pointer to an XmlTextWriter or NULL.
target, content must be valid null-terminated strings or NULL.