mescc: Mes C Library: Prepare for M2-Planet: memcmp.
* lib/string/memcmp.c: Rewrite C-constructs not supported by M2-Planet.
This commit is contained in:
parent
3b68e7de64
commit
8e74d025f2
|
@ -1,6 +1,6 @@
|
||||||
/* -*-comment-start: "//";comment-end:""-*-
|
/* -*-comment-start: "//";comment-end:""-*-
|
||||||
* GNU Mes --- Maxwell Equations of Software
|
* GNU Mes --- Maxwell Equations of Software
|
||||||
* Copyright © 2017,2018 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
* Copyright © 2017,2018,2019 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
||||||
*
|
*
|
||||||
* This file is part of GNU Mes.
|
* This file is part of GNU Mes.
|
||||||
*
|
*
|
||||||
|
@ -23,14 +23,17 @@
|
||||||
int
|
int
|
||||||
memcmp (void const *s1, void const *s2, size_t size)
|
memcmp (void const *s1, void const *s2, size_t size)
|
||||||
{
|
{
|
||||||
if (!size)
|
if (size == 0)
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
char const *a = s1;
|
char const *a = s1;
|
||||||
char const *b = s2;
|
char const *b = s2;
|
||||||
while (*a == *b && --size)
|
|
||||||
|
while (a[0] == b[0] && size > 0)
|
||||||
{
|
{
|
||||||
a++;
|
size = size - 1;
|
||||||
b++;
|
a = a + 1;
|
||||||
|
b = b + 1;
|
||||||
}
|
}
|
||||||
return *a - *b;
|
return a[0] - b[0];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue