|
|
1.1 root 1: /* Copyright (c) 1979 Regents of the University of California */
2:
3: static char sccsid[] = "@(#)RELEQ.c 1.1 10/29/80";
4:
5: #include "h00vars.h"
6:
7: RELEQ(size, str1, str2)
8:
9: register int size;
10: register char *str1;
11: register char *str2;
12: {
13: while (*str1++ == *str2++ && --size)
14: /* void */;
15: if (size == 0)
16: return TRUE;
17: return FALSE;
18: }
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.