void bcopy(void *src
, void *dest
, size_tsize
)
The bcopy
function copies
size
bytes from the memory that is
pointed to by src
to the memory that
is pointed to by dest
. All of the
source memory must lie outside of scratch memory, and all of the
destination memory must lie within it. If these conditions are
not met, no copying takes place and an error is generated.