| 94 | } |
| 95 | |
| 96 | inline std::string lower(std::string str) { |
| 97 | std::transform(str.begin(), str.end(), str.begin(), ::tolower); |
| 98 | return str; |
| 99 | } |
| 100 | |
| 101 | std::string strjoin(const std::vector<std::string>& strings, const std::string& delim); |
| 102 |
no outgoing calls
no test coverage detected