memcpy
Declaration
memcpy :: fn (dest: *u8, src: *u8, size: usize)
Description
Copy memory of defined size from source to destination. Destination
and source size must be at least size
bytes.
Arguments
dest
Pointer to destination memory.src
Pointer to source memory.size
Count of bytes to be copied.
Declared in: memory.bl