Initial revision
This commit is contained in:
15
lang/cem/libcc/gen/strcmp.c
Normal file
15
lang/cem/libcc/gen/strcmp.c
Normal file
@@ -0,0 +1,15 @@
|
||||
int strcmp(s1, s2)
|
||||
register char *s1, *s2;
|
||||
{
|
||||
/* Compare 2 strings. */
|
||||
|
||||
for(;;) {
|
||||
if (*s1 != *s2) {
|
||||
if (!*s1) return -1;
|
||||
if (!*s2) return 1;
|
||||
return(*s1 - *s2);
|
||||
}
|
||||
if (*s1++ == 0) return(0);
|
||||
s2++;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user