20030530-1.c

来自「用于进行gcc测试」· C语言 代码 · 共 24 行

C
24
字号
union tree_node;typedef union tree_node *tree;struct tree_common{  tree type;  unsigned lang_flag_0 : 1;};union tree_node{  struct tree_common common;};static voidjava_check_regular_methods (tree class_decl){  int saw_constructor = class_decl->common.type->common.lang_flag_0;  tree class = class_decl->common.type;  for (;;)    {      if (class)        if (class_decl->common.type)          bar (class);    }}

⌨️ 快捷键说明

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