...
A wide string is a contiguous sequence of wide characters (of type wchar_t
) terminated by and including the first NULL null wide character. A pointer to a wide string points to its initial (lowest addressed) wide character. The length of a wide string is the number of wide characters preceding the NULL null wide character, and the value of a wide string is the sequence of code values of the contained wide characters, in order.
...
Wiki Markup |
---|
\[[ISO/IEC TR 24731-1:2007|AA. C References#ISO/IEC TR 24731-1-2007]\] \[[ISO/IEC 9899:1999|AA. C References#ISO/IEC 9899-1999]\] Section 7.1.1, "Definitions of terms," and Section 7.21, "String handling <string.h><{{string.h}}>" \[[Seacord 05a|AA. C References#Seacord 05a]\] Chapter 2, "Strings" |
...