#include <string.h> void bcopy(const void *source, void *dest, int length);
Copy length bytes from source to dest. Overlapping regions are handled properly, although this behavior is not portable.
No value is returned.
not ANSI, not POSIX
struct s a, b; bcopy(a, b, sizeof(struct s));
Go to the first, previous, next, last section, table of contents.