mirror of
https://github.com/AxioDL/kabufuda.git
synced 2025-05-13 19:01:21 +00:00
8 lines
140 B
C++
8 lines
140 B
C++
#include <string>
|
|
|
|
namespace kabufuda
|
|
{
|
|
std::string WideToUTF8(const std::wstring& src);
|
|
std::wstring UTF8ToWide(const std::string& src);
|
|
}
|