我在定义为的头文件中构建了一个使用常量的工作 C 库
typedef struct Y {
union {
struct bit_field bits;
uint8_t raw[4];
} X;
} CardInfo;
static const CardInfo Y_CONSTANT = { .raw = {0, 0, 0, 0 } };
我知道.raw
初始化程序是仅限 C 的语法。
如何在其中定义带有联合的常量,以便我可以在 C 和 C++ 中使用它们。