(2006-08-06) rescue-bootcd

This commit is contained in:
2006-08-06 00:00:00 +02:00
parent 2f796b816a
commit decb062d20
21091 changed files with 7076462 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
/*
* strncmp.c
*/
#include <string.h>
int strncmp(const char *s1, const char *s2, size_t n)
{
const unsigned char *c1 = s1, *c2 = s2;
unsigned char ch;
int d = 0;
while ( n-- ) {
d = (int)(ch = *c1++) - (int)*c2++;
if ( d || !ch )
break;
}
return d;
}