embassy-rp

Crates

git

Versions

rp2040

Flavors

embassy_rp::rom_data

Function memcpy

Source
pub unsafe extern "C" fn memcpy(
    dest: *mut u8,
    src: *const u8,
    n: u32,
) -> *mut u8
Expand description

Copies n bytes starting at src to dest and returns dest. The results are undefined if the regions overlap.