 
                            ...
A wide string is a contiguous sequence of wide characters terminated by and including the first 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 wide character and the value of a wide string is the sequence of code values of the contained wide characters, in order.
Recommendations
STR00-CA. Use TR 24731 for remediation of existing string manipulation code
STR01-CA. Use managed strings for development of new string manipulation code
...
STR33-C. Guarantee that all strings are null-terminated
References
- ISO/IEC 9899-1999 Section 7.1.1 Definitions of terms, Section 7.21 String handling <string.h>
- Seacord 05 Chapter 2 Strings