ack/lang/cem/libcc/gen/index.c

10 lines
113 B
C
Raw Normal View History

1987-01-27 15:57:55 +00:00
char *index(s, c)
register char *s, c;
{
do {
if (*s == c)
return(s);
} while (*s++ != 0);
return(0);
}