修訂. | aaaeb63d738f000d38c0b01eeabe30e1fa424fe4 |
---|---|
大小 | 460 bytes |
時間 | 2015-12-17 00:02:37 |
作者 | Yoshinori Sato |
Log Message | Merge branch 'master' of ssh://sourceware.org/git/binutils-gdb
|
/* 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);
}