23#pragma GCC diagnostic push
24#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
25#pragma GCC diagnostic ignored "-Wexit-time-destructors"
30 enum class charset_id : uint16_t {
56 constexpr charset_id wchar_t_charset = charset_id::utf16;
58 constexpr charset_id system_charset = charset_id::utf16;
60 constexpr charset_id system_charset = charset_id::system;
63 constexpr charset_id wchar_t_charset = charset_id::utf32;
64 constexpr charset_id system_charset = charset_id::system;
74 inline charset_id charset_from_name(_In_z_
const char* name)
77 bool operator()(_In_z_
const char* a, _In_z_
const char* b)
const
79 return stricmp(a, b) < 0;
82 static const std::map<const char*, charset_id, charset_less> charsets = {
83 {
"UNICODE-1-1-UTF-7", charset_id::utf7 },
84 {
"UTF-7", charset_id::utf7 },
85 {
"CSUNICODE11UTF7", charset_id::utf7 },
87 {
"UTF-8", charset_id::utf8 },
88 {
"UTF8", charset_id::utf8 },
90 {
"UTF-16", charset_id::utf16 },
91#if BYTE_ORDER == BIG_ENDIAN
92 {
"UTF-16BE", charset_id::utf16 },
94 {
"UTF-16LE", charset_id::utf16 },
97 {
"UTF-32", charset_id::utf32 },
98#if BYTE_ORDER == BIG_ENDIAN
99 {
"UTF-32BE", charset_id::utf32 },
101 {
"UTF-32LE", charset_id::utf32 },
104 {
"CP1250", charset_id::windows1250 },
105 {
"MS-EE", charset_id::windows1250 },
106 {
"WINDOWS-1250", charset_id::windows1250 },
108 {
"CP1251", charset_id::windows1251 },
109 {
"MS-CYRL", charset_id::windows1251 },
110 {
"WINDOWS-1251", charset_id::windows1251 },
112 {
"CP1252", charset_id::windows1252 },
113 {
"MS-ANSI", charset_id::windows1252 },
114 {
"WINDOWS-1252", charset_id::windows1252 },
116 if (
auto el = charsets.find(name); el != charsets.end())
118 return charset_id::system;
128 template <
class TR = std::
char_traits<
char>,
class AX = std::allocator<
char>>
129 charset_id charset_from_name(_In_
const std::basic_string<char, TR, AX>& name)
131 return charset_from_name(name.c_str());
137 template <
typename T_from,
typename T_to>
141 charset_id m_from, m_to;
149 m_from_wincp = to_encoding(from);
150 m_to_wincp = to_encoding(to);
152 m_handle = iconv_open(to_encoding(to), to_encoding(from));
153 if (m_handle == (iconv_t)-1)
154 throw std::system_error(errno, std::system_category(),
"iconv_open failed");
161 iconv_close(m_handle);
165 charset_id from_encoding()
const {
return m_from; }
166 charset_id to_encoding()
const {
return m_to; }
175 template <
class TR_to = std::
char_traits<T_to>,
class AX_to = std::allocator<T_to>>
177 _Inout_ std::basic_string<T_to, TR_to, AX_to>& dst,
178 _In_reads_or_z_opt_(count_src)
const T_from* src, _In_
size_t count_src)
180 stdex_assert(src || !count_src);
181 count_src = strnlen<T_from>(src, count_src);
182 if (!count_src) _Unlikely_
186 constexpr DWORD dwFlagsWCMB = 0;
187 constexpr LPCCH lpDefaultChar = NULL;
190 if (m_from_wincp == m_to_wincp) _Unlikely_{
191 dst.append(
reinterpret_cast<const T_to*
>(src), count_src);
195#pragma warning(suppress: 4127)
196 if constexpr (
sizeof(T_from) ==
sizeof(char) &&
sizeof(T_to) ==
sizeof(wchar_t)) {
197 stdex_assert(count_src < INT_MAX || count_src == SIZE_MAX);
200 DWORD dwFlagsMBWC =
static_cast<UINT
>(m_from_wincp) < CP_UTF7 ? MB_PRECOMPOSED : 0;
201 WCHAR szStackBuffer[1024 /
sizeof(WCHAR)];
202#pragma warning(suppress: 6387)
203 int cch = MultiByteToWideChar(
static_cast<UINT
>(m_from_wincp), dwFlagsMBWC,
reinterpret_cast<LPCCH
>(src),
static_cast<int>(count_src), szStackBuffer, _countof(szStackBuffer));
206 dst.append(
reinterpret_cast<const T_to*
>(szStackBuffer), count_src != SIZE_MAX ? wcsnlen(szStackBuffer, cch) :
static_cast<size_t>(cch) - 1);
209 DWORD dwResult = GetLastError();
210 if (dwResult == ERROR_INSUFFICIENT_BUFFER) {
212 cch = MultiByteToWideChar(
static_cast<UINT
>(m_from_wincp), dwFlagsMBWC,
reinterpret_cast<LPCCH
>(src),
static_cast<int>(count_src), NULL, 0);
213 size_t offset = dst.size();
214 dst.resize(offset +
static_cast<size_t>(cch));
215 cch = MultiByteToWideChar(
static_cast<UINT
>(m_from_wincp), dwFlagsMBWC,
reinterpret_cast<LPCCH
>(src),
static_cast<int>(count_src), &dst[offset], cch);
216 dst.resize(offset + (count_src != SIZE_MAX ? wcsnlen(&dst[offset], cch) :
static_cast<size_t>(cch) - 1));
219 throw std::system_error(dwResult, std::system_category(),
"MultiByteToWideChar failed");
222#pragma warning(suppress: 4127)
223 if constexpr (
sizeof(T_from) ==
sizeof(wchar_t) &&
sizeof(T_to) ==
sizeof(char)) {
224 stdex_assert(count_src < INT_MAX || count_src == SIZE_MAX);
227 CHAR szStackBuffer[1024 /
sizeof(CHAR)];
228#pragma warning(suppress: 6387)
229 int cch = WideCharToMultiByte(
static_cast<UINT
>(m_to_wincp), dwFlagsWCMB,
reinterpret_cast<LPCWCH
>(src),
static_cast<int>(count_src), szStackBuffer, _countof(szStackBuffer), lpDefaultChar, NULL);
232 dst.append(
reinterpret_cast<const T_to*
>(szStackBuffer), count_src != SIZE_MAX ? strnlen(szStackBuffer, cch) :
static_cast<size_t>(cch) - 1);
235 DWORD dwResult = GetLastError();
236 if (dwResult == ERROR_INSUFFICIENT_BUFFER) {
238 cch = WideCharToMultiByte(
static_cast<UINT
>(m_to_wincp), dwFlagsWCMB,
reinterpret_cast<LPCWCH
>(src),
static_cast<int>(count_src), NULL, 0, lpDefaultChar, NULL);
239 size_t offset = dst.size();
240 dst.resize(offset +
static_cast<size_t>(cch));
241 cch = WideCharToMultiByte(
static_cast<UINT
>(m_to_wincp), dwFlagsWCMB,
reinterpret_cast<LPCWCH
>(src),
static_cast<int>(count_src), &dst[offset], cch, lpDefaultChar, NULL);
242 dst.resize(offset + (count_src != SIZE_MAX ? strnlen(&dst[offset], cch) :
static_cast<size_t>(cch) - 1));
245 throw std::system_error(dwResult, std::system_category(),
"WideCharToMultiByte failed");
248#pragma warning(suppress: 4127)
249 if constexpr (
sizeof(T_from) ==
sizeof(char) &&
sizeof(T_to) ==
sizeof(char)) {
250 stdex_assert(count_src < INT_MAX || count_src == SIZE_MAX);
253 DWORD dwFlagsMBWC =
static_cast<UINT
>(m_from_wincp) < CP_UTF7 ? MB_PRECOMPOSED : 0, dwResult;
254 WCHAR szStackBufferMBWC[512 /
sizeof(WCHAR)];
255#pragma warning(suppress: 6387)
256 int cch = MultiByteToWideChar(
static_cast<UINT
>(m_from_wincp), dwFlagsMBWC,
reinterpret_cast<LPCCH
>(src),
static_cast<int>(count_src), szStackBufferMBWC, _countof(szStackBufferMBWC));
259 size_t count_inter = count_src != SIZE_MAX ? wcsnlen(szStackBufferMBWC, cch) :
static_cast<size_t>(cch) - 1;
260 stdex_assert(count_inter < INT_MAX);
263 CHAR szStackBufferWCMB[512 /
sizeof(CHAR)];
264#pragma warning(suppress: 6387)
265 cch = WideCharToMultiByte(
static_cast<UINT
>(m_to_wincp), dwFlagsWCMB, szStackBufferMBWC,
static_cast<int>(count_inter), szStackBufferWCMB, _countof(szStackBufferWCMB), lpDefaultChar, NULL);
268 dst.append(
reinterpret_cast<const T_to*
>(szStackBufferWCMB), strnlen(szStackBufferWCMB, cch));
271 dwResult = GetLastError();
272 if (dwResult == ERROR_INSUFFICIENT_BUFFER) {
274 cch = WideCharToMultiByte(
static_cast<UINT
>(m_to_wincp), dwFlagsWCMB, szStackBufferMBWC,
static_cast<int>(count_inter), NULL, 0, lpDefaultChar, NULL);
275 size_t offset = dst.size();
276 dst.resize(offset + cch);
277 cch = WideCharToMultiByte(
static_cast<UINT
>(m_to_wincp), dwFlagsWCMB, szStackBufferMBWC,
static_cast<int>(count_inter), &dst[offset], cch, lpDefaultChar, NULL);
278 dst.resize(offset + strnlen(&dst[offset], cch));
281 throw std::system_error(dwResult, std::system_category(),
"WideCharToMultiByte failed");
283 dwResult = GetLastError();
284 if (dwResult == ERROR_INSUFFICIENT_BUFFER) {
286 cch = MultiByteToWideChar(
static_cast<UINT
>(m_from_wincp), dwFlagsMBWC,
reinterpret_cast<LPCCH
>(src),
static_cast<int>(count_src), NULL, 0);
287 std::unique_ptr<WCHAR[]> szBufferMBWC(
new WCHAR[cch]);
288 cch = MultiByteToWideChar(
static_cast<UINT
>(m_from_wincp), dwFlagsMBWC,
reinterpret_cast<LPCCH
>(src),
static_cast<int>(count_src), szBufferMBWC.get(), cch);
289 size_t count_inter = count_src != SIZE_MAX ? wcsnlen(szBufferMBWC.get(), cch) :
static_cast<size_t>(cch) - 1;
292 cch = WideCharToMultiByte(
static_cast<UINT
>(m_to_wincp), dwFlagsWCMB, szBufferMBWC.get(),
static_cast<int>(count_inter), NULL, 0, lpDefaultChar, NULL);
293 size_t offset = dst.size();
294 dst.resize(offset + cch);
295 cch = WideCharToMultiByte(
static_cast<UINT
>(m_to_wincp), dwFlagsWCMB, szBufferMBWC.get(),
static_cast<int>(count_inter), &dst[offset], cch, lpDefaultChar, NULL);
296 dst.resize(offset + strnlen(&dst[offset], cch));
299 throw std::system_error(dwResult, std::system_category(),
"MultiByteToWideChar failed");
302 dst.reserve(dst.size() + count_src);
303 T_to buf[1024 /
sizeof(T_to)];
304 size_t src_size = stdex::mul(
sizeof(T_from), count_src);
306 T_to* output = &buf[0];
307 size_t output_size =
sizeof(buf);
309 iconv(m_handle,
const_cast<char**
>(
reinterpret_cast<const char**
>(&src)), &src_size,
reinterpret_cast<char**
>(&output), &output_size);
310 dst.append(buf,
reinterpret_cast<T_to*
>(
reinterpret_cast<char*
>(buf) +
sizeof(buf) - output_size));
315 throw std::system_error(errno, std::system_category(),
"iconv failed");
326 template <
class TR_to = std::
char_traits<T_to>,
class AX_to = std::allocator<T_to>>
328 _Inout_ std::basic_string<T_to, TR_to, AX_to>& dst,
329 _In_z_
const T_from* src)
331 strcat(dst, src, SIZE_MAX);
340 template <
class TR_to = std::
char_traits<T_to>,
class AX_to = std::allocator<T_to>>
342 _Inout_ std::basic_string<T_to, TR_to, AX_to>& dst,
343 _In_
const std::basic_string_view<T_from, std::char_traits<T_from>> src)
345 strcat(dst, src.data(), src.size());
355 template <
class TR_to = std::
char_traits<T_to>,
class AX_to = std::allocator<T_to>>
357 _Inout_ std::basic_string<T_to, TR_to, AX_to>& dst,
358 _In_reads_or_z_opt_(count_src)
const T_from* src, _In_
size_t count_src)
361 strcat(dst, src, count_src);
370 template <
class TR_to = std::
char_traits<T_to>,
class AX_to = std::allocator<T_to>>
372 _Inout_ std::basic_string<T_to, TR_to, AX_to>& dst,
373 _In_z_
const T_from* src)
375 strcpy(dst, src, SIZE_MAX);
384 template <
class TR_to = std::
char_traits<T_to>,
class AX_to = std::allocator<T_to>>
386 _Inout_ std::basic_string<T_to, TR_to, AX_to>& dst,
387 _In_
const std::basic_string_view<T_from, std::char_traits<T_from>> src)
389 strcpy(dst, src.data(), src.size());
398 template <
class TR_to = std::
char_traits<T_to>,
class AX_to = std::allocator<T_to>>
399 std::basic_string<T_to, TR_to, AX_to>
convert(_In_reads_or_z_opt_(count_src)
const T_from* src, _In_
size_t count_src)
401 std::basic_string<T_to, TR_to, AX_to> dst;
402 strcat(dst, src, count_src);
411 template <
class TR_to = std::
char_traits<T_to>,
class AX_to = std::allocator<T_to>>
412 std::basic_string<T_to, TR_to, AX_to>
convert(_In_z_
const T_from* src)
422 template <
class TR_to = std::
char_traits<T_to>,
class AX_to = std::allocator<T_to>>
423 std::basic_string<T_to, TR_to, AX_to>
convert(_In_
const std::basic_string_view<T_from, std::char_traits<T_from>> src)
425 return convert(src.data(), src.size());
431 iconv(m_handle, NULL, NULL, NULL, NULL);
435 static charset_id system_charset()
438 return static_cast<charset_id
>(GetACP());
440 return charset_from_name(nl_langinfo(CODESET));
446 static UINT to_encoding(_In_ charset_id charset)
449 charset == charset_id::system ? GetACP() :
450 charset == charset_id::oem ? GetOEMCP() :
451 static_cast<UINT>(charset);
455 UINT m_from_wincp, m_to_wincp;
458 static const char* to_encoding(_In_ charset_id charset)
460 static const char*
const encodings[
static_cast<std::underlying_type_t<charset_id>
>(charset_id::_max)] = {
464#if BYTE_ORDER == BIG_ENDIAN
476 charset == charset_id::system ? nl_langinfo(CODESET) :
477 encodings[static_cast<std::underlying_type_t<charset_id>>(charset)];
495 template <
class TR_to = std::
char_traits<
wchar_t>,
class AX_to = std::allocator<
wchar_t>>
497 _Deprecated_(
"For better performance, consider a reusable charset_encoder")
500 _Inout_ std::basic_string<wchar_t, TR_to, AX_to>& dst,
501 _In_reads_or_z_opt_(count_src)
const char* src, _In_
size_t count_src,
502 _In_ charset_id charset = charset_id::system)
504 charset_encoder<char, wchar_t>(charset, wchar_t_charset).strcat(dst, src, count_src);
507 template <
class TR_to = std::
char_traits<
wchar_t>,
class AX_to = std::allocator<
wchar_t>>
508 _Deprecated_(
"Use stdex::strcat")
509 inline
void str2wstr(
510 _Inout_ std::basic_string<
wchar_t, TR_to, AX_to>& dst,
511 _In_reads_or_z_opt_(count_src) const
char* src, _In_
size_t count_src,
512 _In_ charset_id charset = charset_id::system)
514 strcat(dst, src, count_src, charset);
526 template <
class TR_to = std::
char_traits<
wchar_t>,
class AX_to = std::allocator<
wchar_t>>
528 _Deprecated_(
"For better performance, consider a reusable charset_encoder")
531 _Inout_ std::basic_string<wchar_t, TR_to, AX_to>& dst,
532 _In_
const std::basic_string_view<
char, std::char_traits<char>> src,
533 _In_ charset_id charset = charset_id::system)
535 strcat(dst, src.data(), src.size(), charset);
538 template <
class TR_to = std::
char_traits<
wchar_t>,
class AX_to = std::allocator<
wchar_t>>
539 _Deprecated_(
"Use stdex::strcat")
540 inline
void str2wstr(
541 _Inout_ std::basic_string<
wchar_t, TR_to, AX_to>& dst,
542 _In_ const std::basic_string_view<
char, std::char_traits<
char>> src,
543 _In_ charset_id charset = charset_id::system)
545 strcat(dst, src, charset);
558 template <
class TR_to = std::
char_traits<
wchar_t>,
class AX_to = std::allocator<
wchar_t>>
560 _Deprecated_(
"For better performance, consider a reusable charset_encoder")
563 _Inout_ std::basic_string<wchar_t, TR_to, AX_to>& dst,
564 _In_reads_or_z_opt_(count_src)
const char* src, _In_
size_t count_src,
565 _In_ charset_id charset = charset_id::system)
568 strcat(dst, src, count_src, charset);
580 template <
class TR_to = std::
char_traits<
wchar_t>,
class AX_to = std::allocator<
wchar_t>>
582 _Deprecated_(
"For better performance, consider a reusable charset_encoder")
585 _Inout_ std::basic_string<wchar_t, TR_to, AX_to>& dst,
586 _In_
const std::basic_string_view<
char, std::char_traits<char>> src,
587 _In_ charset_id charset = charset_id::system)
589 strcpy(dst, src.data(), src.size(), charset);
603 _Deprecated_(
"For better performance, consider a reusable charset_encoder")
605 inline std::wstring str2wstr(
606 _In_z_
const char* src,
607 _In_ charset_id charset = charset_id::system)
610 strcat(dst, src, SIZE_MAX, charset);
626 _Deprecated_(
"For better performance, consider a reusable charset_encoder")
628 inline std::wstring str2wstr(
629 _In_reads_or_z_opt_(count_src)
const char* src, _In_
size_t count_src,
630 _In_ charset_id charset = charset_id::system)
633 strcat(dst, src, count_src, charset);
648 _Deprecated_(
"For better performance, consider a reusable charset_encoder")
650 inline std::wstring str2wstr(
651 _In_
const std::basic_string_view<
char, std::char_traits<char>> src,
652 _In_ charset_id charset = charset_id::system)
654 return str2wstr(src.data(), src.size(), charset);
667 template <
class TR_to = std::
char_traits<
char>,
class AX_to = std::allocator<
char>>
669 _Deprecated_(
"For better performance, consider a reusable charset_encoder")
672 _Inout_ std::basic_string<char, TR_to, AX_to>& dst,
673 _In_reads_or_z_opt_(count_src)
const wchar_t* src, _In_
size_t count_src,
674 _In_ charset_id charset = charset_id::system)
676 charset_encoder<wchar_t, char>(wchar_t_charset, charset).strcat(dst, src, count_src);
679 template <
class TR_to = std::
char_traits<
char>,
class AX_to = std::allocator<
char>>
680 _Deprecated_(
"Use stdex::strcat")
681 inline
void wstr2str(
682 _Inout_ std::basic_string<
char, TR_to, AX_to>& dst,
683 _In_reads_or_z_opt_(count_src) const
wchar_t* src, _In_
size_t count_src,
684 _In_ charset_id charset = charset_id::system)
686 strcat(dst, src, count_src, charset);
698 template <
class TR_to = std::
char_traits<
char>,
class AX_to = std::allocator<
char>>
700 _Deprecated_(
"For better performance, consider a reusable charset_encoder")
703 _Inout_ std::basic_string<char, TR_to, AX_to>& dst,
704 _In_
const std::basic_string_view<
wchar_t, std::char_traits<wchar_t>> src,
705 _In_ charset_id charset = charset_id::system)
707 strcat(dst, src.data(), src.size(), charset);
710 template <
class TR_to = std::
char_traits<
char>,
class AX_to = std::allocator<
char>>
711 _Deprecated_(
"Use stdex::strcat")
712 inline
void wstr2str(
713 _Inout_ std::basic_string<
char, TR_to, AX_to>& dst,
714 _In_ const std::basic_string_view<
wchar_t, std::char_traits<
wchar_t>> src,
715 _In_ charset_id charset = charset_id::system)
717 strcat(dst, src, charset);
730 template <
class TR_to = std::
char_traits<
char>,
class AX_to = std::allocator<
char>>
732 _Deprecated_(
"For better performance, consider a reusable charset_encoder")
735 _Inout_ std::basic_string<char, TR_to, AX_to>& dst,
736 _In_reads_or_z_opt_(count_src)
const wchar_t* src, _In_
size_t count_src,
737 _In_ charset_id charset = charset_id::system)
740 strcat(dst, src, count_src, charset);
752 template <
class TR_to = std::
char_traits<
char>,
class AX_to = std::allocator<
char>>
754 _Deprecated_(
"For better performance, consider a reusable charset_encoder")
757 _Inout_ std::basic_string<char, TR_to, AX_to>& dst,
758 _In_
const std::basic_string_view<
wchar_t, std::char_traits<wchar_t>> src,
759 _In_ charset_id charset = charset_id::system)
761 strcpy(dst, src.data(), src.size(), charset);
775 _Deprecated_(
"For better performance, consider a reusable charset_encoder")
777 inline std::string wstr2str(
778 _In_z_
const wchar_t* src,
779 _In_ charset_id charset = charset_id::system)
782 strcat(dst, src, SIZE_MAX, charset);
798 _Deprecated_(
"For better performance, consider a reusable charset_encoder")
800 inline std::string wstr2str(
801 _In_reads_or_z_opt_(count_src)
const wchar_t* src, _In_
size_t count_src,
802 _In_ charset_id charset = charset_id::system)
805 strcat(dst, src, count_src, charset);
820 _Deprecated_(
"For better performance, consider a reusable charset_encoder")
822 inline std::string wstr2str(
823 _In_
const std::basic_string_view<
wchar_t, std::char_traits<wchar_t>> src,
824 _In_ charset_id charset = charset_id::system)
826 return wstr2str(src.data(), src.size(), charset);
839 template <
class TR = std::
char_traits<
wchar_t>,
class AX = std::allocator<
wchar_t>>
841 _Inout_ std::basic_string<wchar_t, TR, AX>& dst,
842 _In_reads_or_z_opt_(count_src)
const wchar_t* src, _In_
size_t count_src)
844 count_src = strnlen(src, count_src);
845 size_t count_dst = dst.size();
846 dst.resize(count_dst + count_src);
847 stdex_assert(count_src + 1 < INT_MAX);
848#pragma warning(suppress: 6387)
849 int r = NormalizeString(NormalizationC, src,
static_cast<int>(count_src), dst.data() + count_dst,
static_cast<int>(count_src + 1));
851 dst.resize(count_dst + r);
853#pragma warning(suppress: 6387)
854 memcpy(dst.data() + count_dst, src, count_src *
sizeof(
wchar_t));
866 template <
size_t N,
class TR = std::
char_traits<
wchar_t>,
class AX = std::allocator<
wchar_t>>
868 _Inout_ std::basic_string<wchar_t, TR, AX>& dst,
869 _In_
const wchar_t (&src)[N])
871 return normalizecat(dst, src, N);
882 template <
class TR_dst = std::
char_traits<
wchar_t>,
class AX_dst = std::allocator<
wchar_t>>
884 _Inout_ std::basic_string<wchar_t, TR_dst, AX_dst>& dst,
885 _In_
const std::basic_string_view<
wchar_t, std::char_traits<wchar_t>> src)
887 return normalizecat(dst, src.data(), src.size());
899 template <
class TR = std::
char_traits<
wchar_t>,
class AX = std::allocator<
wchar_t>>
901 _Inout_ std::basic_string<wchar_t, TR, AX>& dst,
902 _In_reads_or_z_opt_(count_src)
const wchar_t* src, _In_
size_t count_src)
905 return normalizecat(dst, src, count_src);
916 template <
size_t N,
class TR = std::
char_traits<
wchar_t>,
class AX = std::allocator<
wchar_t>>
918 _Inout_ std::basic_string<wchar_t, TR, AX>& dst,
919 _In_
const wchar_t(&src)[N])
921 return normalize(dst, src, N);
932 template <
class TR_dst = std::
char_traits<
wchar_t>,
class AX_dst = std::allocator<
wchar_t>>
934 _Inout_ std::basic_string<wchar_t, TR_dst, AX_dst>& dst,
935 _In_
const std::basic_string_view<
wchar_t, std::char_traits<wchar_t>> src)
937 return normalize(dst, src.data(), src.size());
948 inline std::wstring normalize(_In_reads_or_z_opt_(count_src)
const wchar_t* src, _In_
size_t count_src)
951 normalizecat(dst, src, count_src);
963 std::wstring normalize(_In_
const wchar_t(&src)[N])
966 normalizecat(dst, src, N);
977 inline std::wstring normalize(_In_
const std::basic_string_view<
wchar_t, std::char_traits<wchar_t>> src)
980 normalizecat(dst, src.data(), src.size());
987#pragma GCC diagnostic pop
Encoding converter context.
Definition unicode.hpp:139
void strcat(std::basic_string< T_to, TR_to, AX_to > &dst, _In_reads_or_z_opt_(count_src) const T_from *src, size_t count_src)
Convert string and append to string.
Definition unicode.hpp:176
void strcat(std::basic_string< T_to, TR_to, AX_to > &dst, const std::basic_string_view< T_from, std::char_traits< T_from > > src)
Convert string and append to string.
Definition unicode.hpp:341
void strcpy(std::basic_string< T_to, TR_to, AX_to > &dst, const T_from *src)
Convert string.
Definition unicode.hpp:371
void strcat(std::basic_string< T_to, TR_to, AX_to > &dst, const T_from *src)
Convert string and append to string.
Definition unicode.hpp:327
void strcpy(std::basic_string< T_to, TR_to, AX_to > &dst, _In_reads_or_z_opt_(count_src) const T_from *src, size_t count_src)
Convert string.
Definition unicode.hpp:356
std::basic_string< T_to, TR_to, AX_to > convert(const T_from *src)
Return converted string.
Definition unicode.hpp:412
void strcpy(std::basic_string< T_to, TR_to, AX_to > &dst, const std::basic_string_view< T_from, std::char_traits< T_from > > src)
Convert string.
Definition unicode.hpp:385
std::basic_string< T_to, TR_to, AX_to > convert(const std::basic_string_view< T_from, std::char_traits< T_from > > src)
Return converted string.
Definition unicode.hpp:423
std::basic_string< T_to, TR_to, AX_to > convert(_In_reads_or_z_opt_(count_src) const T_from *src, size_t count_src)
Return converted string.
Definition unicode.hpp:399