You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#include "misc.h"
|
|
|
|
int memcmp(const void *s1, const void *s2, size_t len)
|
|
{
|
|
u8 diff;
|
|
asm("repe; cmpsb; setnz %0"
|
|
: "=qm" (diff), "+D" (s1), "+S" (s2), "+c" (len));
|
|
return diff;
|
|
}
|
|
|
|
#include "../string.c"
|
|
|