| 279 | } |
| 280 | |
| 281 | void StringToUpper(std::string* str) { |
| 282 | std::transform(str->begin(), str->end(), str->begin(), ::toupper); |
| 283 | } |
| 284 | |
| 285 | bool StringContains(const std::string& str, const std::string& sub_str) { |
| 286 | return str.find(sub_str) != std::string::npos; |
no test coverage detected