mirror of
https://github.com/fluencelabs/musl
synced 2025-05-04 11:32:14 +00:00
8 lines
156 B
C
8 lines
156 B
C
|
#include <string.h>
|
||
|
|
||
|
int strcmp(const char *l, const char *r)
|
||
|
{
|
||
|
for (; *l==*r && *l && *r; l++, r++);
|
||
|
return *(unsigned char *)l - *(unsigned char *)r;
|
||
|
}
|