Go to the first, previous, next, last section, table of contents.


bcopy---copy memory regions

Synopsis

#include <string.h>
void bcopy(const char *in, char  *out, size_t n);

Description
This function copies n bytes from the memory region pointed to by in to the memory region pointed to by out.

This function is implemented in term of memmove.


Portability
bcopy requires no supporting OS subroutines.



Go to the first, previous, next, last section, table of contents.