#[unsafe(no_mangle)]pub unsafe extern "C" fn lv_memcpy(
destination: *mut c_void,
source: *const c_void,
size: usize,
) -> *mut c_voidExpand description
Copy a block of memory from source to destination
ยงSafety
This function is unsafe because it dereferences raw pointers.