| 39 | |
| 40 | |
| 41 | std::wstring StripToFirstDot(const std::wstring& input) { |
| 42 | size_t dot_position = input.find(L'.'); |
| 43 | if (dot_position != std::wstring::npos) { |
| 44 | return input.substr(0, dot_position); |
| 45 | } |
| 46 | return input; |
| 47 | } |
| 48 | |
| 49 | |
| 50 | std::vector<std::wstring> GetFilesInDirectory(const std::wstring& directory) { |
no outgoing calls
no test coverage detected