1/* Stub implementation of (obsolete) rindex(). */
2
3/*
4
5@deftypefn Supplemental char* rindex (const char *@var{s}, int @var{c})
6
7Returns a pointer to the last occurrence of the character @var{c} in
8the string @var{s}, or @code{NULL} if not found.  The use of @code{rindex} is
9deprecated in new programs in favor of @code{strrchr}.
10
11@end deftypefn
12
13*/
14
15extern char *strrchr (const char *, int);
16
17char *
18rindex (const char *s, int c)
19{
20  return strrchr (s, c);
21}
22