| 133 | } |
| 134 | |
| 135 | static std::string LowerAscii(std::string s) |
| 136 | { |
| 137 | std::transform(s.begin(), s.end(), s.begin(), [](unsigned char c) { return static_cast<char>(std::tolower(c)); }); |
| 138 | return s; |
| 139 | } |
| 140 | |
| 141 | static std::string StripCsvSuffix(const std::string& filename) |
| 142 | { |
no outgoing calls
no test coverage detected