lv_memmove

Function lv_memmove 

Source
#[unsafe(no_mangle)]
pub unsafe extern "C" fn lv_memmove( destination: *mut c_void, source: *const c_void, size: usize, ) -> *mut c_void
Expand description

Move a block of memory from source to destination

ยงSafety

This function is unsafe because it dereferences raw pointers.