Files
CPP_Core/psc_global_include/codec.h
T
2026-06-16 10:56:40 +08:00

10 lines
320 B
C++

#pragma once
#include <filesystem>
#include <string>
namespace Psc {
std::string utf8_2_platform(const std::string& utf8);
std::string platform_2_utf8(const std::string& platform);
std::filesystem::path path_from_utf8(const std::string& utf8_path);
std::string path_to_utf8(const std::filesystem::path& p);
}