union-defs.h

来自「用于进行gcc测试」· C头文件 代码 · 共 16 行

H
16
字号
/* Type definitions that are used by multiple tests.  */typedef union { char c; short s; } Ucs;typedef union { char c; int i; } Uci;typedef union { char c; long l; } Ucl;typedef union { char c; long long ll; } Ucll;typedef union { short s; int i; } Usi;typedef union { short s; long l; } Usl;typedef union { short s; long long ll; } Usll;typedef union { int i; long l; } Uil;typedef union { int i; long long ll; } Uill;typedef union { long l; long long ll; } Ulll;

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?