📄 setshow.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 + -