mirror of
https://github.com/UzixLS/KernelEx.git
synced 2025-07-19 07:21:20 +03:00
import KernelEx-4.0-RC1
This commit is contained in:
21
kexcrt/strcmp.c
Normal file
21
kexcrt/strcmp.c
Normal file
@ -0,0 +1,21 @@
|
||||
/*
|
||||
* strcmp.c
|
||||
*/
|
||||
|
||||
#include <string.h>
|
||||
|
||||
int strcmp(const char *s1, const char *s2)
|
||||
{
|
||||
const unsigned char *c1 = (const unsigned char *)s1;
|
||||
const unsigned char *c2 = (const unsigned char *)s2;
|
||||
unsigned char ch;
|
||||
int d = 0;
|
||||
|
||||
while (1) {
|
||||
d = (int)(ch = *c1++) - (int)*c2++;
|
||||
if (d || !ch)
|
||||
break;
|
||||
}
|
||||
|
||||
return d;
|
||||
}
|
Reference in New Issue
Block a user