#[unsafe(no_mangle)]pub unsafe extern "C" fn xmlOutputBufferWriteEscape(
out: *mut _xmlOutputBuffer,
str: *const xmlChar,
escaping: Option<xmlCharEncodingOutputFunc>,
) -> c_intExpand description
Write to an output buffer, escaping special characters with the given escape function (upstream xmlOutputBufferWriteEscape).
§SAFETY
outmust be a valid output buffer;stra NUL-terminated string;escapinga valid escape callback or NULL.