pub unsafe extern "C" fn sys_dlist_range_append(
dest: *mut _dnode,
start: *mut _dnode,
last: *mut _dnode,
)Expand description
@brief Move a range of nodes to the end of the specified list
This routine moves a range of nodes from their current list to the end of the list @a dest. The range of nodes is defined by the pointers @a start and @a last, which point to the first and last nodes in the range, respectively.
@param dest the list into which the range of nodes will be moved @param start the first node in the range to be moved @param last the last node in the range to be moved