diff options
author | Bill Lorensen <lorensen@crd.ge.com> | 2001-09-12 21:09:02 (GMT) |
---|---|---|
committer | Bill Lorensen <lorensen@crd.ge.com> | 2001-09-12 21:09:02 (GMT) |
commit | 1e9fbdc38cad9519024a7302fabefd0d792aa039 (patch) | |
tree | 8c6c22f1a77bdca088da7d433ec105e4c9f8e22b /Source | |
parent | aac4e8eb3cdd05b865aadeddfcca332967affc1a (diff) | |
download | CMake-1e9fbdc38cad9519024a7302fabefd0d792aa039.zip CMake-1e9fbdc38cad9519024a7302fabefd0d792aa039.tar.gz CMake-1e9fbdc38cad9519024a7302fabefd0d792aa039.tar.bz2 |
ENH: Added LowerCase method.
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmSystemTools.cxx | 13 | ||||
-rw-r--r-- | Source/cmSystemTools.h | 5 |
2 files changed, 18 insertions, 0 deletions
diff --git a/Source/cmSystemTools.cxx b/Source/cmSystemTools.cxx index fb2f297..4d9bf11 100644 --- a/Source/cmSystemTools.cxx +++ b/Source/cmSystemTools.cxx @@ -417,6 +417,19 @@ std::string cmSystemTools::Capitalized(const std::string& s) } +// Return a lower case string +std::string cmSystemTools::LowerCase(const std::string& s) +{ + std::string n; + n.resize(s.size()); + for (size_t i = 0; i < s.size(); i++) + { + n[i] = tolower(s[i]); + } + return n; +} + + // convert windows slashes to unix slashes \ with / const char *cmSystemTools::ConvertToUnixSlashes(std::string& path) { diff --git a/Source/cmSystemTools.h b/Source/cmSystemTools.h index c7c44af..c85a4ea 100644 --- a/Source/cmSystemTools.h +++ b/Source/cmSystemTools.h @@ -96,6 +96,11 @@ public: static std::string Capitalized(const std::string&); /** + * Return a lower case string + */ + static std::string LowerCase(const std::string&); + + /** * Replace Windows file system slashes with Unix-style slashes. */ static const char *ConvertToUnixSlashes(std::string& path); |