libiberty: dupargv: rewrite to use xstrdup
[deliverable/binutils-gdb.git] / libiberty / rindex.c
index 9c25dff4dcc4579b99b29543c5e1835cab9fd29f..194ef9fad7861a60e7789023318e4d59413293ff 100644 (file)
@@ -5,19 +5,17 @@
 @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 NULL if not found.  The use of @code{rindex} is
+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 ();
+extern char *strrchr (const char *, int);
 
 char *
-rindex (s, c)
-  char *s;
-  int c;
+rindex (const char *s, int c)
 {
   return strrchr (s, c);
 }
This page took 0.024636 seconds and 4 git commands to generate.