summaryrefslogtreecommitdiff
path: root/src/util.h
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2010-08-20 02:46:15 +0200
committerLennart Poettering <lennart@poettering.net>2010-08-20 02:46:15 +0200
commit11ce3427242b8b4ddf638ed5703d69041d719b4c (patch)
tree42470b61324288d4bc08f21c5126a32521ce3b76 /src/util.h
parent049f86421bfe8afcbb00c7ee5a76fd14841f8bbf (diff)
mount: properly handle LABEL="" in fstab
Diffstat (limited to 'src/util.h')
-rw-r--r--src/util.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/util.h b/src/util.h
index 7490236fa0..4063ee7ff2 100644
--- a/src/util.h
+++ b/src/util.h
@@ -339,6 +339,8 @@ char *ellipsize(const char *s, unsigned length, unsigned percent);
int touch(const char *path);
+char *unquote(const char *s, const char quote);
+
#define NULSTR_FOREACH(i, l) \
for ((i) = (l); (i) && *(i); (i) = strchr((i), 0)+1)