pub unsafe extern "C" fn sys_sflist_merge_sflist(
list: *mut _sflist,
list_to_append: *mut _sflist,
)
Expand description
@brief merge two sflists, appending the second one to the first
When the operation is completed, the appending list is empty. This and other sys_sflist_*() functions are not thread safe.
@param list A pointer on the list to affect @param list_to_append A pointer to the list to append.