aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-06-30 10:58:08 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-06-30 10:58:08 +0000
commit8b1409896d3224fec477bc372c4dceaebe6d6351 (patch)
treefc52f5b45fcf1ab317e508d83ffb4102ced7b148
parentdc757aa16ce53d9784fa3953b0c3762dfa8ccda9 (diff)
downloadbusybox-w32-8b1409896d3224fec477bc372c4dceaebe6d6351.tar.gz
busybox-w32-8b1409896d3224fec477bc372c4dceaebe6d6351.tar.bz2
busybox-w32-8b1409896d3224fec477bc372c4dceaebe6d6351.zip
add bb_basename.c
-rw-r--r--libbb/bb_basename.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/libbb/bb_basename.c b/libbb/bb_basename.c
new file mode 100644
index 000000000..e19156d5c
--- /dev/null
+++ b/libbb/bb_basename.c
@@ -0,0 +1,18 @@
1/* vi: set sw=4 ts=4: */
2/*
3 * Utility routines.
4 *
5 * Copyright (C) 2007 Denis Vlasenko
6 *
7 * Licensed under GPL version 2, see file LICENSE in this tarball for details.
8 */
9
10#include "libbb.h"
11
12const char *bb_basename(const char *name)
13{
14 const char *cp = strrchr(name, '/');
15 if (cp)
16 return cp + 1;
17 return name;
18}