| 83 | } |
| 84 | |
| 85 | std::string ToLowerCase(const std::string& text) { |
| 86 | std::string result(text); |
| 87 | std::transform(result.begin(), result.end(), result.begin(), |
| 88 | [](unsigned char c) { return std::tolower(c); }); |
| 89 | return result; |
| 90 | } |
| 91 | |
| 92 | std::string ToUpperCase(const std::string& text) { |
| 93 | std::string result(text); |
no test coverage detected