pub unsafe extern "C" fn sys_sflist_merge_sflist(
    list: *mut sys_sflist_t,
    list_to_append: *mut sys_sflist_t,
)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.