Files
gcc-os2/libiberty/rindex.c
Dmitriy Kuminov fbf7869a1b vendor: Import gcc-9_2_0-release.
Source URL:    git://gcc.gnu.org/git/gcc.git
Source Commit: 3e7b85061947bdc7c7465743ba90734566860821
2019-11-18 21:50:01 +03:00

22 lines
460 B
C

/* Stub implementation of (obsolete) rindex(). */
/*
@deftypefn Supplemental char* rindex (const char *@var{s}, int @var{c})
Returns a pointer to the last occurrence of the character @var{c} in
the string @var{s}, or @code{NULL} if not found. The use of @code{rindex} is
deprecated in new programs in favor of @code{strrchr}.
@end deftypefn
*/
extern char *strrchr (const char *, int);
char *
rindex (const char *s, int c)
{
return strrchr (s, c);
}