⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 setjmp.c.texi

📁 一个C源代码分析器
💻 TEXI
字号:
#include <setjmp.h>#include <stdlib.h>#include <stdio.h>jmp_buf main_loop;void abort_to_main_loop (int status)@{  longjmp (main_loop, status);@}intmain (void)@{  while (1)    if (setjmp (main_loop))      puts ("Back at main loop....");    else      do_command ();@}void do_command (void)@{  char buffer[128];  if (fgets (buffer, 128, stdin) == NULL)    abort_to_main_loop (-1);  else    exit (EXIT_SUCCESS);@}

⌨️ 快捷键说明

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