Sign in
mojo
/
mojo-tools
/
17e3b04429ce6ad836128e1ceffefd85493ec779
/
.
/
fusl
/
src
/
string
/
bcopy.c
blob: 65ab61a6e945a95777c8bb4d0f4467169e545c6a [
file
] [
log
] [
blame
]
#define
_BSD_SOURCE
#include
<string.h>
#include
<strings.h>
void
bcopy
(
const
void
*
s1
,
void
*
s2
,
size_t
n
)
{
memmove
(
s2
,
s1
,
n
);
}