|
|
1.1 root 1: /* ssequal.c - initially equal? */
2:
3:
4: ssequal (substr, str)
5: register char *substr,
6: *str;
7: {
8: if (!substr)
9: substr = "";
10: if (!str)
11: str = "";
12:
13: while (*substr)
14: if (*substr++ != *str++)
15: return 0;
16: return 1;
17: }
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.