mirror of
https://github.com/obsqrbtz/clrsync.git
synced 2026-04-08 20:19:04 +03:00
16 lines
408 B
C++
16 lines
408 B
C++
#ifndef CLRSYNC_CORE_UTILS_HPP
|
|
#define CLRSYNC_CORE_UTILS_HPP
|
|
|
|
#include <filesystem>
|
|
#include <string>
|
|
|
|
#include <core/palette/color_keys.hpp>
|
|
|
|
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
|