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