Type Alias riot_sys::inline::clist_cmp_func_t

source ·
pub type clist_cmp_func_t = Option<unsafe extern "C" fn(_: *mut clist_node_t, _: *mut clist_node_t) -> c_int>;

Aliased Type§

enum clist_cmp_func_t {
    None,
    Some(unsafe extern "C" fn(_: *mut list_node, _: *mut list_node) -> i32),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "C" fn(_: *mut list_node, _: *mut list_node) -> i32)

Some value of type T.