old-cross-binutils/libiberty/rindex.c

24 lines
447 B
C
Raw Normal View History

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