pub type xmlMallocFunc = Option<unsafe extern "C" fn(size: usize) -> *mut c_void>;Expand description
xmlMallocFunc: @size: the size requested in bytes
Signature for a malloc() implementation.
Returns a pointer to the newly allocated block or NULL in case of error.
Aliased Type§
enum xmlMallocFunc {
None,
Some(unsafe extern "C" fn(_: usize) -> *mut c_void),
}