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