📄 list.c
字号:
#ifndef lintstatic char sccsid[] = "@(#)list.c 4.2 (Berkeley) 4/25/83";#endif not lint#include "stdio.h"#include "lrnref.h"#include "signal.h"int istop;list(r)char *r;{ int stop(), intrpt(); FILE *ft; char s[100]; if (r==0) return; istop = 1; signal(SIGINT, stop); ft = fopen(r, "r"); if (ft != NULL) { while (fgets(s, 100, ft) && istop) fputs(s, stdout); fclose(ft); } signal(SIGINT, intrpt);}stop(){ istop=0;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -