summaryrefslogtreecommitdiff
path: root/polux/application/busybox/libbb/bb_basename.c
diff options
context:
space:
mode:
Diffstat (limited to 'polux/application/busybox/libbb/bb_basename.c')
-rw-r--r--polux/application/busybox/libbb/bb_basename.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/polux/application/busybox/libbb/bb_basename.c b/polux/application/busybox/libbb/bb_basename.c
new file mode 100644
index 0000000000..e6832f8ef5
--- /dev/null
+++ b/polux/application/busybox/libbb/bb_basename.c
@@ -0,0 +1,18 @@
+/* vi: set sw=4 ts=4: */
+/*
+ * Utility routines.
+ *
+ * Copyright (C) 2007 Denys Vlasenko
+ *
+ * Licensed under GPL version 2, see file LICENSE in this tarball for details.
+ */
+
+#include "libbb.h"
+
+const char *bb_basename(const char *name)
+{
+ const char *cp = strrchr(name, '/');
+ if (cp)
+ return cp + 1;
+ return name;
+}