| 35 | namespace sf |
| 36 | { |
| 37 | std::string toLower(std::string str) |
| 38 | { |
| 39 | for (char& c : str) |
| 40 | c = static_cast<char>(std::tolower(static_cast<unsigned char>(c))); |
| 41 | return str; |
| 42 | } |
| 43 | |
| 44 | std::string formatDebugPathInfo(const std::filesystem::path& path) |
| 45 | { |