BSD 4_2 development
[unix-history] / usr / src / new / new / mh / subs / uleq.c
uleq(c1, c2)
register char *c1, *c2;
{
register int c;
while(c = *c1++)
if((c|040) != (*c2|040))
return(0);
else
c2++;
return(*c2 == 0);
}