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

📄 display_yesno.c

📁 操作系统SunOS 4.1.3版本的源码
💻 C
字号:
#ifndef lintstatic	char	sccsid[] = "@(#)display_yesno.c 1.1 92/07/30";#endif/* *	Name:		display_yesno.c * *	Description:	Display a yes/no question. * *	Call syntax:	display_form_yesno(yesno_p); * *	Parameters:	form_yesno *	yesno_p; */#include <curses.h>#include "menu.h"voiddisplay_form_yesno(yesno_p)	form_yesno *	yesno_p;{	menu_string *	string_p;		/* pointer to string */	if (yesno_p->fyn_active) {		for (string_p = yesno_p->fyn_mstrings; string_p;		     string_p = string_p->ms_next) {			if ((pointer)yesno_p == _current_obj)				standout();			display_menu_string(string_p);			if ((pointer)yesno_p == _current_obj)				standend();		}		/*		 *	Print the current answer:		 */		if (yesno_p->fyn_answerp)			yesno_p->fyn_answer = *yesno_p->fyn_answerp;		move((int) yesno_p->fyn_y, (int) yesno_p->fyn_x);		switch (yesno_p->fyn_answer) {		case 'n':		case 'N':			addch('n');			break;		case 'y':		case 'Y':			addch('y');			break;		default:			addch(' ');			break;		} /* end switch */	}} /* end display_form_yesno() */

⌨️ 快捷键说明

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