#[unsafe(no_mangle)]pub unsafe extern "C" fn xmlOutputBufferCreateFile(
file: *mut FILE,
encoder: *mut c_void,
) -> *mut _xmlOutputBufferExpand description
Create an output buffer writing to a FILE * (upstream
xmlOutputBufferCreateFile): the FILE is the I/O context with a
write callback wrapping fwrite and a close callback wrapping fflush.
ยงSAFETY
filemust be a validFILE *or NULL.