aboutsummaryrefslogtreecommitdiff
path: root/include/cru/win/string.hpp
blob: 7a12e47e7c13e39ff190ce786d8eed2946f5220a (plain)
1
2
3
4
5
6
7
8
9
10
#pragma once
#include "win_pre_config.hpp"

#include <string>
#include <string_view>

namespace cru::platform::win {
std::string ToUtf8String(const std::wstring_view& string);
std::wstring ToUtf16String(const std::string_view& string);
}