Remove __P-protected prototype for basename.
authorJim Meyering <jim@meyering.net>
Sat, 16 Mar 1996 05:42:53 +0000 (05:42 +0000)
committerJim Meyering <jim@meyering.net>
Sat, 16 Mar 1996 05:42:53 +0000 (05:42 +0000)
Reported by François Pinard.
(remove_suffix): Move to precede use.  Remove prototype.
Declare formal parameter SUFFIX to be const.

src/basename.c

index 6d2ea21..9a9ca0c 100644 (file)
 #include "long-options.h"
 #include "error.h"
 
-char *basename __P ((char *));
-void strip_trailing_slashes ();
-
-static void remove_suffix __P ((register char *name, register char *suffix));
+extern char *basename ();
+extern void strip_trailing_slashes ();
 
 /* The name this program was run with. */
 char *program_name;
@@ -66,6 +64,25 @@ If specified, also remove a trailing SUFFIX.\n\
   exit (status);
 }
 
+/* Remove SUFFIX from the end of NAME if it is there, unless NAME
+   consists entirely of SUFFIX. */
+
+static void
+remove_suffix (char *name, const char *suffix)
+{
+  char *np;
+  const char *sp;
+
+  np = name + strlen (name);
+  sp = suffix + strlen (suffix);
+
+  while (np > name && sp > suffix)
+    if (*--np != *--sp)
+      return;
+  if (np > name)
+    *np = '\0';
+}
+
 void
 main (int argc, char **argv)
 {
@@ -95,21 +112,3 @@ main (int argc, char **argv)
 
   exit (0);
 }
-
-/* Remove SUFFIX from the end of NAME if it is there, unless NAME
-   consists entirely of SUFFIX. */
-
-static void
-remove_suffix (register char *name, register char *suffix)
-{
-  register char *np, *sp;
-
-  np = name + strlen (name);
-  sp = suffix + strlen (suffix);
-
-  while (np > name && sp > suffix)
-    if (*--np != *--sp)
-      return;
-  if (np > name)
-    *np = '\0';
-}