mirror of
https://github.com/encounter/aurora.git
synced 2025-07-31 17:35:42 +00:00
11 lines
151 B
C++
11 lines
151 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
namespace kabufuda
|
|
{
|
|
std::string WideToUTF8(std::wstring_view src);
|
|
std::wstring UTF8ToWide(std::string_view src);
|
|
}
|
|
|