bcopy
---copy memory regionsSynopsis
#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.
Packaging copyright © 1988-2000 OAR Corporation Context copyright by each document's author. See Free Software Foundation for information.