bcopy - copy byte sequence
Standard C library (libc
, -lc
)
#include <strings.h>
[[deprecated]] void bcopy(const void src[.n], void dest[.n], 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 |
None.