3 <<index>>---search for character in string
10 char * index(const char *<[string]>, int <[c]>);
13 This function finds the first occurence of <[c]> (converted to
14 a char) in the string pointed to by <[string]> (including the
15 terminating null character).
17 This function is identical to <<strchr>>.
20 Returns a pointer to the located character, or a null pointer
21 if <[c]> does not occur in <[string]>.
24 <<index>> requires no supporting OS subroutines.