|
|
BSD 4.3
/* ssequal.c - initially equal? */
ssequal (substr, str)
register char *substr,
*str;
{
if (!substr)
substr = "";
if (!str)
str = "";
while (*substr)
if (*substr++ != *str++)
return 0;
return 1;
}
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.