bcopy - copy byte sequence
#include <strings.h>
void bcopy(const void *src, void *dest, size_t n);
The bcopy() function copies n
bytes from src
to dest
. The result is correct, even when both areas overlap.
None.
For an explanation of the terms used in this section, see attributes(7).
Interface | Attribute | Value |
bcopy() | Thread safety | MT-Safe |
This page is part of release 4.15 of the Linux man-pages
project. A description of the project, information about reporting bugs, and the latest version of this page, can be found at https://www.kernel.org/doc/man-pages/.