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

📄 list.c

📁 <B>Digital的Unix操作系统VAX 4.2源码</B>
💻 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 + -