ack/modules/src/string/strindex.c

13 lines
147 B
C
Raw Normal View History

1987-01-06 11:41:50 +00:00
/* strindex() -- (86/03/18 EHB)
*/
char *
strindex(s, c)
register char *s, c;
{
while (*s)
if (*s++ == c)
return --s;
return (char *)0;
}