920428-6.c

来自「this is a gcc file, you can download it 」· C语言 代码 · 共 23 行

C
23
字号
typedef struct x{  struct x *type;  struct x *chain;  struct x *value;} *tree;intfunc (new, old)     register tree new, old;{  if (old->type == 0 || new->type == 0)    {      register tree t = old->type;      if (t == 0)	t = new->type;      for (; t; t = t->chain )	if (t->value)	  return 1;    }  return 0;}

⌨️ 快捷键说明

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