summaryrefslogtreecommitdiff
path: root/src/libs6rc/s6rc_livedir_canon.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs6rc/s6rc_livedir_canon.c')
-rw-r--r--src/libs6rc/s6rc_livedir_canon.c25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/libs6rc/s6rc_livedir_canon.c b/src/libs6rc/s6rc_livedir_canon.c
new file mode 100644
index 0000000..db5d3a1
--- /dev/null
+++ b/src/libs6rc/s6rc_livedir_canon.c
@@ -0,0 +1,25 @@
+/* ISC license. */
+
+#include <string.h>
+#include <errno.h>
+
+#include <skalibs/alloc.h>
+
+#include <s6-rc/s6rc-utils.h>
+
+int s6rc_livedir_canon (char const **live)
+{
+ size_t llen = strlen(*live) ;
+ size_t n = llen ;
+ while (n && (*live)[n - 1] == '/') --n ;
+ if (!n) return (errno = EINVAL, 0) ;
+ if (n < llen)
+ {
+ char *x = alloc(n + 1) ;
+ if (!x) return 0 ;
+ memcpy(x, *live, n) ;
+ x[n] = 0 ;
+ *live = x ;
+ }
+ return 1 ;
+}