pub unsafe extern "C" fn sys_dlist_insert(
    successor: *mut sys_dnode_t,
    node: *mut sys_dnode_t,
)Expand description
@brief Insert a node into a list
Insert a node before a specified node in a dlist.
@param successor the position before which “node” will be inserted @param node the element to insert