| 88 | template std::string Join(const std::vector<const char*>&, const std::string&); |
| 89 | |
| 90 | bool StartsWith(const std::string& s, const char* prefix) { |
| 91 | return strncmp(s.c_str(), prefix, strlen(prefix)) == 0; |
| 92 | } |
| 93 | |
| 94 | bool StartsWith(const std::string& s, const std::string& prefix) { |
| 95 | return strncmp(s.c_str(), prefix.c_str(), prefix.size()) == 0; |
no test coverage detected