Tagged Questions
9
votes
3answers
287 views
UTF-16 string terminator
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?
8
votes
3answers
331 views
Where can I get started with Unicode-friendly programming in C?
So, I’m working on a plain-C (ANSI 9899:1999) project, and am trying to figure out where to get started re: Unicode, UTF-8, and all that jazz.
Specifically, it’s a language interpreter project, and I ...
4
votes
3answers
212 views
C: Most efficient way to determine how many bytes will be needed for a UTF-16 string from a UTF-8 string
I've seen some very clever code out there for converting between Unicode codepoints and UTF-8 so I was wondering if anybody has (or would enjoy devising) this.
Given a UTF-8 string, how many bytes ...
4
votes
2answers
3k views
strcmp or _tcscmp in UNICODE
For comparing strings in UNICODE versions is it advisable to use strcmp or _tcscmp?
Thanks in advance
0
votes
2answers
1k views
_T( ) macro changes for UNICODE character data
I have UNICODE application where in we use _T(x) which is defined as follows.
#if defined(_UNICODE)
#define _T(x) L ##x
#else
#define _T(x) x
#endif
I understand that L gets defined to wchar_t, ...
0
votes
2answers
860 views
UNICODE_STRING to Null terminated
I need to convert a UNICODE_STRING structure to a simple NULL TERMINATED STRING.
typedef
struct _UNICODE_STRING
{
USHORT Length;
USHORT MaximumLength;
PWSTR Buffer;
}
...