| 441 | } |
| 442 | |
| 443 | inline std::string StrToUpper(const std::string &str) { |
| 444 | std::string ret = str; |
| 445 | std::for_each(ret.begin(), ret.end(), [](char & c) { |
| 446 | c = ::toupper(c); |
| 447 | }); |
| 448 | return ret; |
| 449 | } |
| 450 | |
| 451 | template <size_t N> |
| 452 | void splitString(string (&arr)[N], string str) |
no test coverage detected