1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-29 06:21:14 +02:00

Add a toLower utility function

This commit is contained in:
Eelco Dolstra 2016-09-14 14:42:15 +02:00
parent e07c0dcf5c
commit a75d11a7e6
2 changed files with 14 additions and 0 deletions

View file

@ -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"). */