3 <<rindex>>---reverse search for character in string
10 char * rindex(const char *<[string]>, int <[c]>);
13 This function finds the last 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 <<strrchr>>.
20 Returns a pointer to the located character, or a null pointer
21 if <[c]> does not occur in <[string]>.
24 <<rindex>> requires no supporting OS subroutines.
34 rindex (const char *s
,
37 return strrchr (s
, c
);