#ifndef GLTB_STRINGCONVERT_H #define GLTB_STRINGCONVERT_H #include namespace gltb { wchar_t *utf8ToUtf16WChar(const char *input); char *utf16ToUtf8Char(const wchar_t *input); std::wstring utf8ToUtf16WString(std::string input); std::string utf16ToUtf8String(std::wstring input); } #endif