1 2 3 4 5 6 7 8 9 10 11
/* Stub implementation of (obsolete) index(). */ extern char * strchr(); char * index (s, c) char *s; int c; { return strchr (s, c); }