| 275 | } |
| 276 | |
| 277 | void StringToLower(std::string* str) { |
| 278 | std::transform(str->begin(), str->end(), str->begin(), ::tolower); |
| 279 | } |
| 280 | |
| 281 | void StringToUpper(std::string* str) { |
| 282 | std::transform(str->begin(), str->end(), str->begin(), ::toupper); |
no test coverage detected