pub type xmlFreeFunc = Option<unsafe extern "C" fn(mem: *mut c_void)>;Expand description
xmlFreeFunc: @mem: an already allocated block of memory
Signature for a free() implementation.
Aliased Type§
enum xmlFreeFunc {
None,
Some(unsafe extern "C" fn(_: *mut c_void)),
}