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

📄 delay_out.c

📁 操作系统SunOS 4.1.3版本的源码
💻 C
字号:
/*	Copyright (c) 1984 AT&T	*//*	  All Rights Reserved  	*//*	THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF AT&T	*//*	The copyright notice above does not evidence any   	*//*	actual or intended publication of such source code.	*/#ifndef lintstatic	char sccsid[] = "@(#)delay_out.c 1.1 92/07/30 SMI"; /* from S5R3.1 1.6 */#endif/* * Code for various kinds of delays.  Most of this is nonportable and * requires various enhancements to the operating system, so it won't * work on all systems.  It is included in curses to provide a portable * interface, and so curses itself can use it for function keys. */#include	"curses_inc.h"/* * Delay the output for ms milliseconds. * Note that this is NOT the same as a high resolution sleep.  It will * cause a delay in the output but will not necessarily suspend the * processor.  For applications needing to sleep for 1/10th second, * this is not a usable substitute.  It causes a pause in the displayed * output, for example, for the eye wink in snake.  It is disrecommended * for "delay" to be much more than 1/2 second, especially at high * baud rates, because of all the characters it will output.  Note * that due to system delays, the actual pause could be even more. * You can't get a decent pac-man game with this routine. */delay_output(ms)int	ms;{    extern	int	_outchar();    return (_delay(ms * 10, _outchar));}

⌨️ 快捷键说明

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