necf.c

来自「操作系统SunOS 4.1.3版本的源码」· C语言 代码 · 共 53 行

C
53
字号
/* * 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 + =
减小字号Ctrl + -
显示快捷键?