From a75d11a7e6984b3df15da9677fbd49ee8de7a9c3 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 14 Sep 2016 14:42:15 +0200 Subject: Add a toLower utility function --- src/libutil/util.hh | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/libutil/util.hh') diff --git a/src/libutil/util.hh b/src/libutil/util.hh index 69c723ad2eae..7aeca0edc026 100644 --- a/src/libutil/util.hh +++ b/src/libutil/util.hh @@ -334,6 +334,10 @@ bool hasPrefix(const string & s, const string & prefix); bool hasSuffix(const string & s, const string & suffix); +/* Convert a string to lower case. */ +std::string toLower(const std::string & s); + + /* Escape a string that contains octal-encoded escape codes such as used in /etc/fstab and /proc/mounts (e.g. "foo\040bar" decodes to "foo bar"). */ -- cgit 1.4.1