pub unsafe extern "C" fn sys_sflist_remove(
list: *mut _sflist,
prev_node: *mut _sfnode,
node: *mut _sfnode,
)
Expand description
@brief Remove a node
This and other sys_sflist_*() functions are not thread safe.
@param list A pointer on the list to affect @param prev_node A pointer on the previous node (can be NULL, which means the node is the list’s head) @param node A pointer on the node to remove