summaryrefslogtreecommitdiffstats
path: root/include/mangle.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/mangle.h')
-rw-r--r--include/mangle.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/include/mangle.h b/include/mangle.h
new file mode 100644
index 000000000..8ce38752d
--- /dev/null
+++ b/include/mangle.h
@@ -0,0 +1,14 @@
+#ifndef UTIL_LINUX_MANGLE_H
+#define UTIL_LINUX_MANGLE_H
+
+/*
+ * Functions for \oct encoding used in mtab/fstab/swaps/etc.
+ */
+
+extern char *mangle(const char *s);
+
+extern void unmangle_to_buffer(char *s, char *buf, size_t len);
+extern char *unmangle(char *s);
+
+#endif /* UTIL_LINUX_MANGLE_H */
+