libyml::externs

Function memmove

Source
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.