Indent nested CPP-directives.
[gnulib.git] / lib / basename.c
index b8e7e1f..7e0c1f6 100644 (file)
    along with this program; if not, write to the Free Software
    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
 
-#if defined(USG) || defined(STDC_HEADERS)
-#include <string.h>
-#define rindex strrchr
-#else
-#include <strings.h>
+#ifdef HAVE_CONFIG_H
+#include <config.h>
 #endif
 
-/* Return NAME with any leading path stripped off.  */
+/* Return NAME with any leading path stripped off.
+   Don't use strrchr/rindex.  */
 
 char *
 basename (name)
-     char *name;
+     const char *name;
 {
-  char *base;
+  const char *base = name;
 
-  base = rindex (name, '/');
-  return base ? base + 1 : name;
+  while (*name)
+    {
+      if (*name == '/')
+       base = name + 1;
+      ++name;
+    }
+  return (char *) base;
 }