| 79 | } |
| 80 | |
| 81 | std::string strToLower(const std::string& s) |
| 82 | { |
| 83 | string ret; |
| 84 | std::transform(s.begin(), s.end(), back_inserter(ret), (int(*)(int)) std::tolower); |
| 85 | return ret; |
| 86 | } |
| 87 | |
| 88 | std::string strToUpper(const std::string& s) |
| 89 | { |
nothing calls this directly
no outgoing calls
no test coverage detected