Files
Digital-Research-Source-Code/CPM OPERATING SYSTEMS/CPM 68K/1.0X SOURCES/v102a/alclib/strcmp.c
Sepp J Morris 31738079c4 Upload
Digital Research
2020-11-06 18:50:37 +01:00

22 lines
246 B
C

/*
Copyright 1983
Alcyon Corporation
8716 Production Ave.
San Diego, CA 92121
@(#) strcmp.c - Sep 6, 1983
*/
strcmp(s,t)
register char *s, *t;
{
while( *s ) {
if( *s++ != *t++ ) {
s--;
t--;
break;
}
}
return( *s - *t );
}