summaryrefslogtreecommitdiffstats
path: root/src/pulsecore/core-util.h
diff options
context:
space:
mode:
authorTanu Kaskinen <tanuk@iki.fi>2009-07-21 00:02:27 +0300
committerTanu Kaskinen <tanuk@iki.fi>2009-07-21 00:02:27 +0300
commit9347e90fed732dac619bb88f6518c344e7436447 (patch)
tree13b38dbb987296e21e7040d4ae903ddbd2a30d04 /src/pulsecore/core-util.h
parent5c7952e4fa5e560f64255ef173c3e6570bee433a (diff)
Finish the Core dbus interface.
Diffstat (limited to 'src/pulsecore/core-util.h')
-rw-r--r--src/pulsecore/core-util.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/pulsecore/core-util.h b/src/pulsecore/core-util.h
index 96a0480a..aaa51bd6 100644
--- a/src/pulsecore/core-util.h
+++ b/src/pulsecore/core-util.h
@@ -220,6 +220,13 @@ unsigned pa_ncpus(void);
char *pa_replace(const char*s, const char*a, const char *b);
+/* Escapes p by inserting backslashes in front of backslashes. chars is a
+ * regular (ie. NULL-terminated) string containing additional characters that
+ * should be escaped. chars can be NULL. The caller has to free the returned
+ * string. */
+char *pa_escape(const char *p, const char *chars);
+
+/* Does regular backslash unescaping. Returns the argument p. */
char *pa_unescape(char *p);
char *pa_realpath(const char *path);