pub type _STACK = stack_st;
Aliased Type§
struct _STACK {
pub num: usize,
pub data: *mut *mut c_void,
pub sorted: i32,
pub num_alloc: usize,
pub comp: Option<unsafe extern "C" fn(_: *const *const c_void, _: *const *const c_void) -> i32>,
}
Fields§
§num: usize
§data: *mut *mut c_void
§sorted: i32
§num_alloc: usize
§comp: Option<unsafe extern "C" fn(_: *const *const c_void, _: *const *const c_void) -> i32>