pub unsafe extern "C" fn sys_slist_insert(
list: *mut sys_slist_t,
prev: *mut sys_snode_t,
node: *mut sys_snode_t,
)
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