| 168 | } |
| 169 | |
| 170 | std::string normalize_path(const std::string& filename) |
| 171 | { |
| 172 | std::string fn = base::get_canonical_path(filename); |
| 173 | fn = base::fix_path_separators(fn); |
| 174 | return fn; |
| 175 | } |
| 176 | |
| 177 | bool has_file_extension(const std::string& filename, const std::string& csv_extensions) |
| 178 | { |
no test coverage detected