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