pub type xmlStrdupFunc = Option<unsafe extern "C" fn(str_: *const c_char) -> *mut c_char>;Expand description
Signature for an strdup() implementation.
@param str a zero terminated string @returns the copy of the string or NULL in case of error.
Aliased Type§
pub enum xmlStrdupFunc {
None,
Some(unsafe extern "C" fn(*const i8) -> *mut i8),
}