Function rp2040_hal::rom_data::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.

§Safety

This is a low-level C function. It may be difficult to call safely from Rust. If in doubt, check the RP2040 datasheet for details and do your own safety evaluation.