forked from KolibriOS/kolibrios
51d395d0cc
git-svn-id: svn://kolibrios.org@145 a494cfbc-eb01-0410-851d-a64ba20cac60
14 lines
235 B
C
14 lines
235 B
C
typedef unsigned char uc;
|
|
int memcmp(const void* buf1,const void* buf2,int count)
|
|
{
|
|
int i;
|
|
for (i=0;i<count;i++)
|
|
{
|
|
if (*(uc*)buf1<*(uc*)buf2)
|
|
return -1;
|
|
if (*(uc*)buf1>*(uc*)buf2)
|
|
return 1;
|
|
}
|
|
return 0;
|
|
}
|