pr25514.c
来自「用于进行gcc测试」· C语言 代码 · 共 25 行
C
25 行
struct node { struct node *next; int value;};struct node *current_node, global_list;voidbar (void){ struct node *node, *next; node = current_node; next = node->next; if (node != &global_list) current_node = next; else { node = global_list.next; global_list.value = node->value; global_list.next = node->next; } foo (node);}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?