date and time created 88/07/21 17:35:50 by marc
[unix-history] / usr / src / local / sccscmds / sccscmds.ok / util / any.c
static char Sccsid[] = "@(#)any.c 1.2 %G%";
/*
If any character of `s' is `c', return 1
else return 0.
*/
any(c,s)
register char c, *s;
{
while (*s)
if (*s++ == c)
return(1);
return(0);
}