mirror of
https://github.com/encounter/aurora.git
synced 2025-07-30 17:05:51 +00:00
13 lines
257 B
C++
13 lines
257 B
C++
#ifndef __KABU_WIDESTRINGCONVERT_HPP__
|
|
#define __KABU_WIDESTRINGCONVERT_HPP__
|
|
|
|
#include <string>
|
|
|
|
namespace kabufuda
|
|
{
|
|
std::string WideToUTF8(std::wstring_view src);
|
|
std::wstring UTF8ToWide(std::string_view src);
|
|
}
|
|
|
|
#endif // __KABU_WIDESTRINGCONVERT_HPP__
|