标签: c unicode macros c-preprocessor
在我正在研究的项目中,定义了各种字符串,如下所示:
const char myString[] = { 'H', 0x00, 'e', 0x00, 'l', 0x00, 'l', 0x00, 'o', 0x00, 0x00, 0x00, };
我认为这是unicode或其他什么?是否有某种更好的方式编写此代码,例如:
const char myString[] = BUILD_UNICODE_STRING("Hello");