binutils-gdb/libiberty/rindex.c

24 lines
447 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
*/
1999-05-03 09:29:11 +02:00
extern char *strrchr ();
char *
rindex (s, c)
char *s;
int c;
{
return strrchr (s, c);
}