[][src]Function esp32_hal::mem::memcpy

#[no_mangle]pub unsafe extern "C" fn memcpy(
    dst: *mut u8,
    src: *const u8,
    n: usize
) -> *mut u8

Copies n-bytes of data from src to dst

If data overlaps and src < dst, the data will be corrupted.