mirror of
https://github.com/AxioDL/kabufuda.git
synced 2025-06-29 09:53:28 +00:00
9 lines
172 B
C++
9 lines
172 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
namespace kabufuda {
|
|
std::string WideToUTF8(std::wstring_view src);
|
|
std::wstring UTF8ToWide(std::string_view src);
|
|
} // namespace kabufuda
|