binutils-gdb/libiberty/rindex.c

22 lines
460 B
C
Raw Normal View History

1999-05-03 09:29:11 +02:00
/* Stub implementation of (obsolete) rindex(). */
2001-09-26 20:45:50 +02:00
/*
@deftypefn Supplemental char* rindex (const char *@var{s}, int @var{c})
2001-09-27 22:27:58 +02:00
Returns a pointer to the last occurrence of the character @var{c} in
2001-10-08 00:42:23 +02:00
the string @var{s}, or @code{NULL} if not found. The use of @code{rindex} is
2001-09-26 20:45:50 +02:00
deprecated in new programs in favor of @code{strrchr}.
@end deftypefn
*/
2005-04-02 22:20:01 +02:00
extern char *strrchr (const char *, int);
1999-05-03 09:29:11 +02:00
char *
2005-04-02 22:20:01 +02:00
rindex (const char *s, int c)
1999-05-03 09:29:11 +02:00
{
return strrchr (s, c);
}