mirror of
https://github.com/UzixLS/KernelEx.git
synced 2025-07-18 23:11:19 +03:00
22 lines
334 B
C
Executable File
22 lines
334 B
C
Executable File
/*
|
|
* strncmp.c
|
|
*/
|
|
|
|
#include <string.h>
|
|
|
|
int strncmp(const char *s1, const char *s2, size_t n)
|
|
{
|
|
const unsigned char *c1 = (const unsigned char *)s1;
|
|
const unsigned char *c2 = (const unsigned char *)s2;
|
|
unsigned char ch;
|
|
int d = 0;
|
|
|
|
while (n--) {
|
|
d = (int)(ch = *c1++) - (int)*c2++;
|
|
if (d || !ch)
|
|
break;
|
|
}
|
|
|
|
return d;
|
|
}
|