lv_memcpy

Function lv_memcpy 

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

Copy a block of memory from source to destination

ยงSafety

This function is unsafe because it dereferences raw pointers.