memcpy — Copy one area of memory to another
void *memcpy(
)
void * dest
Where to copy to
const void * src
Where to copy from
size_t count
The size of the area.
You should not use this function to access IO space, usememcpy_toio ormemcpy_fromio instead.
memcpy_toio
memcpy_fromio