fix: normalize paths

This commit is contained in:
2025-12-17 02:58:23 +03:00
parent 1c2486d476
commit ef0854aa39
8 changed files with 38 additions and 26 deletions

View File

@@ -2,6 +2,7 @@
#define CLRSYNC_CORE_UTILS_HPP
#include <string>
#include <filesystem>
#include <core/palette/color_keys.hpp>
@@ -10,5 +11,6 @@ namespace clrsync::core
void print_color_keys();
std::string get_default_config_path();
std::string expand_user(const std::string &path);
std::filesystem::path normalize_path(const std::string &path);
} // namespace clrsync::core
#endif // CLRSYNC_CORE_UTILS_HPP