What is the string terminator sequence for a UTF-16 string?
EDIT:
Let me rephrase the question in an attempt to clarify. How's does the call to wcslen() work?
|
What is the string terminator sequence for a UTF-16 string? EDIT: Let me rephrase the question in an attempt to clarify. How's does the call to | ||||
|
feedback
|
|
Unicode does not define string terminators. Your environment or language does. For instance, C strings use 0x0 as a string terminator, where .NET languages do not use a string terminator at all - they define a separate value in the To answer your second question, | |||||||||||||||
feedback
|
And the null wide character is | |||||||
feedback
|
|
There isn't any. String terminators are not part of an encoding. For example if you had the string | ||||
|
feedback
|
wchar_t, and cannot simply because it doesn't work with the C API for wide characters, which assumes each multibyte character corresponds to a singlewchar_tvalue, not a sequence ofwchar_tvalues. You're stuck with either UCS-2 or standard functions that fail to obey the requirements of the standard if you insist on makingwchar_t16-bit... – R.. May 7 '11 at 21:42sizeof(wchar_t)== 4 bytes, or 32 bits. I didn’t think it would work otherwise. – tchrist May 7 '11 at 22:53sizeof(wchar_t) == 2, much to the annoyance of programmers who need to write cross-platform libraries that support Unicode. – dan04 May 10 '11 at 2:57