Purpose
Copies n bytes
from src to dest. The result
is correct even when both areas overlap.
Prototype
void __bcopy(const
void* src, void* dest, size_t n);
Parameters
- src
- The source address of data to be copied.
- dest
- The destination address of data to be copied
- n
- The size of the data.