bcopy
Copies memory
#include <memory.h>
void
bcopy
(
char *src,
char *dest,
long n
)
Arguments
src
Pointer to source data area
dest
Pointer to destination data area
n
Number of bytes to copy
Return Value
None
Explanation
The first
n
bytes of the data area pointed to by
src
are copied to the data area pointed to by
dest
.
See Also
memcpy()