diff options
Diffstat (limited to 'x/binutils/libiberty/rindex.c')
-rw-r--r-- | x/binutils/libiberty/rindex.c | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/x/binutils/libiberty/rindex.c b/x/binutils/libiberty/rindex.c new file mode 100644 index 0000000..ef9cdc5 --- /dev/null +++ b/x/binutils/libiberty/rindex.c @@ -0,0 +1,23 @@ +/* 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 (); + +char * +rindex (s, c) + char *s; + int c; +{ + return strrchr (s, c); +} |