Sign in
mojo
/
mojo-tools
/
7c97b4f370e3a86f1a5eef522c829f20cf25eca7
/
.
/
fusl
/
src
/
string
/
bcmp.c
blob: b1a0b3c4ebd383e1e75d9f0252273388f8a20e72 [
file
] [
log
] [
blame
]
#define
_BSD_SOURCE
#include
<string.h>
#include
<strings.h>
int
bcmp
(
const
void
*
s1
,
const
void
*
s2
,
size_t
n
)
{
return
memcmp
(
s1
,
s2
,
n
);
}