summaryrefslogtreecommitdiff
path: root/src/util-strings.c
diff options
context:
space:
mode:
authorPeter Hutterer <peter.hutterer@who-t.net>2021-02-05 14:36:16 +1000
committerPeter Hutterer <peter.hutterer@who-t.net>2021-02-12 14:31:50 +1000
commite6ed506df335e8eb0d79d22d22d0734a2b93fe43 (patch)
tree7ad530110cfb98dc731a9aeb4961b26a48c2b14f /src/util-strings.c
parent8ab2581d202e95f51dabc84eebd7e0311b59bfe1 (diff)
utils: add a trunkname() function to extract the trunk of a filename
/path/to/foo.bar returns "foo" Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Diffstat (limited to 'src/util-strings.c')
-rw-r--r--src/util-strings.c31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/util-strings.c b/src/util-strings.c
index 8d2aeb01..3e174806 100644
--- a/src/util-strings.c
+++ b/src/util-strings.c
@@ -155,3 +155,34 @@ strv_join(char **strv, const char *joiner)
return str;
}
+
+/**
+ * Similar to basename() but returns the trunk only without the (last)
+ * trailing suffix, so that:
+ *
+ * - foo.c returns foo
+ * - foo.a.b returns foo.a
+ * - foo returns foo
+ * - foo/ returns ""
+ *
+ * @return an allocated string representing the trunk name of the file
+ */
+char *
+trunkname(const char *filename)
+{
+ /* See basename(3), there are two versions and they depend on
+ * whether libgen.h is included. We can't be sure which basename()
+ * applies here, so let's play it safe and assume it's the POSIX
+ * one. */
+ char *tmp = strdup(filename);
+ char *base = basename(tmp);
+ char *suffix;
+ char *trunk;
+
+ if ((suffix = rindex(base, '.')))
+ *suffix = '\0';
+
+ trunk = strdup(base);
+ free(tmp);
+ return trunk;
+}