pub unsafe fn memmove(
dest: *mut c_void,
src: *const c_void,
count: u64,
) -> *mut c_voidExpand description
Moves memory from src to dest.
ยงSafety
The caller must ensure that the memory areas do not overlap or are correctly managed.