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

📄 necf.c

📁 操作系统SunOS 4.1.3版本的源码
💻 C
字号:
/* * Copyright (c) 1983 Regents of the University of California. * All rights reserved.  The Berkeley software License Agreement * specifies the terms and conditions for redistribution. */#ifndef lintstatic char sccsid[] = "@(#)necf.c 1.1 92/07/30 SMI"; /* from UCB 5.1 5/15/85 */#endif not lint#include <stdio.h>#include <sgtty.h>#define PAGESIZE	66main(){	extern char *rindex();	static char sobuf[BUFSIZ];	char line[256];	register char c, *cp;	register lnumber;	setbuf(stdout, sobuf);#ifdef SHEETFEEDER	printf("\033=\033\033\033O\f");#else	printf("\033=");#endif	lnumber = 0;	while (fgets(line, sizeof(line), stdin) != NULL) {#ifdef SHEETFEEDER		if (lnumber == PAGESIZE-1) {			putchar('\f');			lnumber = 0;		}		if (lnumber >= 2) {#endif#ifdef TTY			if ((cp = rindex(line, '\n')) != NULL)				*cp = '\r';#endif			printf("%s", line);#ifdef SHEETFEEDER		}		lnumber++;#endif	}	fflush (stdout);	exit(0);	/* NOTREACHED */}

⌨️ 快捷键说明

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