Rivoreo Source Code Repositories
src.rivoreo.one
/
devel
/
celibc
/
cfd52dbb07cb3e1678713e26ab9877cf65f922cb
/
.
/
string
/
bcopy.c
blob: dadd023c88987ef5967e2b9cebf958fd4d7ba415 [
file
] [
log
] [
blame
] [
raw
]
#include
<string.h>
void
bcopy
(
const
void
*
b1
,
void
*
b2
,
size_t
len
)
{
memmove
(
b2
,
b1
,
len
);
}