pub unsafe extern "C" fn sys_slist_insert(
list: *mut _slist,
prev: *mut _snode,
node: *mut _snode,
)
Expand description
@brief Insert a node to the given list
This and other sys_slist_*() functions are not thread safe.
@param list A pointer on the list to affect @param prev A pointer on the previous node @param node A pointer on the node to insert