mirror of
https://github.com/netchx/netch.git
synced 2026-03-14 17:43:18 +08:00
12 lines
250 B
C++
12 lines
250 B
C++
#include "Utils.h"
|
|
|
|
string ws2s(const wstring str)
|
|
{
|
|
return wstring_convert<codecvt_utf8<wchar_t>, wchar_t>().to_bytes(str);
|
|
}
|
|
|
|
wstring s2ws(const string str)
|
|
{
|
|
return wstring_convert<codecvt_utf8<wchar_t>, wchar_t>().from_bytes(str);
|
|
}
|