| 70 | } |
| 71 | |
| 72 | bool startsWith(std::string const &str, std::string const &prefix) |
| 73 | { |
| 74 | if (str.length() <= prefix.length()) |
| 75 | return false; |
| 76 | return (str.rfind(prefix, 0) == 0); |
| 77 | } |
| 78 | |
| 79 | std::string removeQuotes(std::string const &str) |
| 80 | { |
no outgoing calls
no test coverage detected