Tagged Questions

20
votes
6answers
480 views

Unicode hell (on Windows) [closed]

Today I woke up and felt something was awfully wrong with my code and every library I've ever used, and I think I was right... (or please point out where my reasoning is wrong) Let's start I decade ...
11
votes
9answers
12k views

C++ strings: UTF-8 or 16-bit encoding?

I'm still trying to decide whether my (home) project should use UTF-8 strings (implemented in terms of std::string with additional UTF-8-specific functions when necessary) or some 16-bit string ...
2
votes
4answers
978 views

2-byte (UCS-2) wide strings under GCC

when porting my Visual C++ project to GCC, I found out that the wchar_t datatype is 4-byte UTF-32 by default. I could override that with a compiler option, but then the whole wcs* (wcslen, wcscmp, ...
0
votes
2answers
128 views

How to calculate length of an UCS-2 string and its size in C++?

I have a string in UCS-2 encoding. I need to copy this string to another UCS-2 string. Before copying I need to calculate the length of a UCS-2 string for memeory allocation. How to calculate length ...