summaryrefslogtreecommitdiff
path: root/polux/application/busybox/libbb/bb_basename.c
diff options
context:
space:
mode:
authorJean-Philippe SAVE2012-02-20 16:38:56 +0100
committerJean-Philippe SAVE2012-02-20 16:38:56 +0100
commit55a15cc820e926219ebce47218ce1e2f35bb0c48 (patch)
treedba3ff39a766e47859ab7fd837d8da5d30b56b1f /polux/application/busybox/libbb/bb_basename.c
parent1353d3215782b997fdec3f9182cbda547d92d7e9 (diff)
parentcfc4d43d4d19c398d994b75cb1eeda3c499bd234 (diff)
Add polux base by subtree merge
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;
+}