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

📄 setshow.c

📁 这个是LINUX下的GDB调度工具的源码
💻 C
字号:
/* IMPORTANT: leave this comment in the first line of this source file. *//*            this will guarantee that line 1 contains no code. */#include <stdio.h>#ifdef PROTOTYPESintmain(int argc, char **argv)#elseint main(argc, argv)     int argc;     char **argv;#endif{  int i = 1;#ifdef usestubs  set_debug_traps();  breakpoint();#endif  if (argc <= 0 || argc > 8)    return -1;  while (i < argc)    printf ("%s ", argv[i++]);  return 0;}

⌨️ 快捷键说明

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