forked from KolibriOS/kolibrios
3e571bd7cc
git-svn-id: svn://kolibrios.org@6443 a494cfbc-eb01-0410-851d-a64ba20cac60
18 lines
290 B
C
18 lines
290 B
C
#include <string.h>
|
|
|
|
typedef unsigned char uc;
|
|
int memcmp(const void* buf1,const void* buf2,size_t count)
|
|
{
|
|
int i;
|
|
for (i=0;i<count;i++)
|
|
{
|
|
if (*(uc*)buf1<*(uc*)buf2)
|
|
return -1;
|
|
if (*(uc*)buf1>*(uc*)buf2)
|
|
return 1;
|
|
(uc*)buf1++;
|
|
(uc*)buf2++;
|
|
}
|
|
return 0;
|
|
}
|