亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來(lái)到蟲(chóng)蟲(chóng)下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲(chóng)蟲(chóng)下載站

?? fun.c

?? ncurses-5.4 需要的就來(lái)下把 一定會(huì)有用的哦
?? C
?? 第 1 頁(yè) / 共 2 頁(yè)
字號(hào):
		}		if (found_exit(keybuf, hex_out, 0)) {			break;		}	}	if (keypad_local) {		tc_putp(keypad_local);	}	keys_tested(0, 0, hex_out);	ptext("Function key test ");	generic_done_message(t, state, ch);}inttty_meta_prep(void){				/* print a warning before the meta key test */	if (not_a_tty) {		return 0;	}	if (initial_stty_query(TTY_8_BIT)) {		return 0;	}	ptext("The meta key test must be run with the");	ptext(" terminal set for 8 data bits.  Two stop bits");	ptext(" may also be needed for correct display.  I will");	ptext(" transmit 8 bit data but if the terminal is set for");	ptextln(" 7 bit data, garbage may appear on the screen.");	return 1;}/***	funkey_meta(test_list, status, ch)****	Test meta key (km) (smm) (rmm)*/static voidfunkey_meta(	struct test_list *t,	int *state,	int *ch){	int i, j, k, len;	char outbuf[256];	if (has_meta_key) {		put_crlf();		if (char_mask != ALLOW_PARITY) {			if (tty_meta_prep()) {				ptext("\nHit any key to continue > ");				(void) wait_here();				put_crlf();			}		}		ptext("Begin meta key test. (km) (smm) (rmm)  Hit any key");		ptext(" with the meta key.  The character will be");		ptext(" displayed in hex.  If the meta key is working");		ptext(" then the most significant bit will be set.  Type");		ptextln(" 'end' to exit.");		tty_raw(1, ALLOW_PARITY);		tc_putp(meta_on);		for (i = j = k = len = 0; i != 'e' || j != 'n' || k != 'd';) {			i = j;			j = k;			k = getchp(ALLOW_PARITY);			if (k == EOF) {				break;			}			if ((len += 3) >= columns) {				put_crlf();				len = 3;			}			sprintf(outbuf, "%02X ", k);			put_str(outbuf);			k &= STRIP_PARITY;		}		tc_putp(meta_off);		put_crlf();		tty_set();		put_crlf();	} else {		ptext("(km) Has-meta-key is not set.  ");	}	generic_done_message(t, state, ch);}/***	funkey_label(test_list, status, ch)****	Test labels (nlab) (smln) (pln) (rmln) (lw) (lh)*/static voidfunkey_label(	struct test_list *t,	int *state,	int *ch){	int i;	char outbuf[256];	if (num_labels == -1) {		ptextln("Your terminal has no labels. (nlab)");	} else {		sprintf(temp, "Your terminal has %d labels (nlab) that are %d characters wide (lw) and %d lines high (lh)",			num_labels, label_width, label_height);		ptext(temp);		ptextln(" Testing (smln) (pln) (rmln)");		if (label_on) {			tc_putp(label_on);		}		if (label_width <= 0) {			label_width = sizeof(outbuf) - 1;		}		for (i = 1; i <= num_labels; i++) {			sprintf(outbuf, "L%d..............................", i);			outbuf[label_width] = '\0';			tc_putp(tparm(plab_norm, i, outbuf));		}		if (label_off) {			ptext("Hit any key to remove the labels: ");			(void) wait_here();			tc_putp(label_off);		}	}	generic_done_message(t, state, ch);}/***	funkey_prog(test_list, status, ch)****	Test program function keys (pfx)*/static voidfunkey_prog(	struct test_list *t,	int *state,	int *ch){	int i, fk;	char mm[256];	fk = 1;	/* use function key 1 for now */	if (pkey_xmit) {		/* test program function key */		sprintf(temp,			"(pfx) Set function key %d to transmit abc\\n", fk);		ptextln(temp);		tc_putp(tparm(pkey_xmit, fk, "abc\n"));		sprintf(temp, "Hit function key %d\n", fk);		ptextln(temp);		for (i = 0; i < 4; ++i)			mm[i] = getchp(STRIP_PARITY);		mm[i] = '\0';		put_crlf();		if (mm[0] != 'a' || mm[1] != 'b' || mm[2] != 'c') {			sprintf(temp, "Error string received was: %s", expand(mm));			ptextln(temp);		} else {			putln("Thank you\n");		}		flush_input();		if (key_f1) {			tc_putp(tparm(pkey_xmit, fk, key_f1));		}	} else {		ptextln("Function key transmit (pfx), not present.");	}	generic_done_message(t, state, ch);}/***	funkey_local(test_list, status, ch)****	Test program local function keys (pfloc)*/static voidfunkey_local(	struct test_list *t,	int *state,	int *ch){	int fk;	fk = 1;	if (pkey_local) {		/* test local function key */		sprintf(temp,			"(pfloc) Set function key %d to execute a clear and print \"Done!\"", fk);		ptextln(temp);		sprintf(temp, "%sDone!", liberated(clear_screen));		tc_putp(tparm(pkey_local, fk, temp));		sprintf(temp, "Hit function key %d.  Then hit return.", fk);		ptextln(temp);		(void) wait_here();		flush_input();		if (key_f1 && pkey_xmit) {			tc_putp(tparm(pkey_xmit, fk, key_f1));		}	} else {		ptextln("Function key execute local (pfloc), not present.");	}	generic_done_message(t, state, ch);}/***	printer_on(test_list, status, ch)****	Test printer on/off (mc4) (mc5) (mc5i)*/static voidprinter_on(	struct test_list *t,	int *state,	int *ch){	if (!prtr_on || !prtr_off) {		ptextln("Printer on/off missing. (mc5) (mc4)");	} else if (prtr_silent) {		ptextln("Your printer is silent. (mc5i) is set.");		tc_putp(prtr_on);		ptextln("This line should be on the printer but not your screen. (mc5)");		tc_putp(prtr_off);		ptextln("This line should be only on the screen. (mc4)");	} else {		ptextln("Your printer is not silent. (mc5i) is reset.");		tc_putp(prtr_on);		ptextln("This line should be on the printer and the screen. (mc5)");		tc_putp(prtr_off);		ptextln("This line should only be on the screen. (mc4)");	}	generic_done_message(t, state, ch);}/***	printer_mc0(test_list, status, ch)****	Test screen print (mc0)*/static voidprinter_mc0(	struct test_list *t,	int *state,	int *ch){	if (print_screen) {		ptext("I am going to send the contents of the screen to");		ptext(" the printer, then wait for a keystroke from you.");		ptext("  All of the text that appears on the screen");		ptextln(" should be printed. (mc0)");		tc_putp(print_screen);	} else {		ptext("(mc0) Print-screen is not present.  ");	}	generic_done_message(t, state, ch);}static voidline_pattern(void){				/* put up a pattern that will help count the				   number of lines */	int i, j;	put_clear();	if (over_strike) {		for (i = 0; i < 100; i++) {			if (i) {				put_crlf();			}			for (j = i / 10; j; j--) {				put_this(' ');			}			put_this('0' + ((i + 1) % 10));		}	} else	/* I assume it will scroll */ {		for (i = 100; i; i--) {			sprintf(temp, "\r\n%d", i);			put_str(temp);		}	}}static voidcolumn_pattern(void){				/* put up a pattern that will help count the				   number of columns */	int i, j;	put_clear();	for (i = 0; i < 20; i++) {		for (j = 1; j < 10; j++) {			put_this('0' + j);		}		put_this('.');	}}/***	report_help()****	Print the help text for the echo tests*/static voidreport_help(int crx){	ptextln("The following commands may also be entered:");	ptextln(" clear   clear screen.");	ptextln(" columns print a test pattern to help count screen width.");	ptextln(" lines   print a test pattern to help count screen length.");	ptextln(" end     exit.");	ptextln(" echo    redisplay last report.");	if (crx) {		ptextln(" hex     redisplay last report in hex.");	} else {		ptextln(" hex     toggle hex display mode.");	}	ptextln(" help    display this list.");	ptextln(" high    toggle forced high bit (0x80).");	ptextln(" scan    toggle scan mode.");	ptextln(" one     echo one character after <cr> or <lf> as is. (report mode)");	ptextln(" two     echo two characters after <cr> or <lf> as is.");	ptextln(" all     echo all characters after <cr> or <lf> as is. (echo mode)");}/***	tools_report(testlist, state, ch)****	Run the echo tool and report tool*/voidtools_report(	struct test_list *t,	int *state GCC_UNUSED,	int *pch GCC_UNUSED){	int i, j, ch, crp, crx, high_bit, save_scan_mode, hex_display;	char buf[1024];	char txt[8];	hex_display = hex_out;	put_clear();	if ((crx = (t->flags & 255)) == 1) {		ptext("Characters after a CR or LF will be echoed as");		ptextln(" is.  All other characters will be expanded.");		report_help(crx);	} else {	/* echo test */		ptextln("Begin echo test.");		report_help(crx);	}	txt[sizeof(txt) - 1] = '\0';	save_scan_mode = scan_mode;	tty_raw(1, char_mask);	for (i = crp = high_bit = 0;;) {		ch = getchp(char_mask);		if (ch == EOF) {			break;		}		if (i >= (int) sizeof(buf) - 1) {			i = 0;		}		buf[i++] = ch;		buf[i] = '\0';		for (j = 0; j < (int) sizeof(txt) - 1; j++) {			txt[j] = txt[j + 1];		}		txt[sizeof(txt) - 1] = ch & STRIP_PARITY;		if (crx == 0) {	/* echo test */			if (hex_display) {				ptext(hex_expand_to(&buf[i - 1], 3));			} else {				tc_putch(ch | high_bit);			}		} else /* status report test */		if (ch == '\n' || ch == '\r') {			put_crlf();			crp = 0;		} else if (crp++ < crx) {			tc_putch(ch | high_bit);		} else {			put_str(expand(&buf[i - 1]));		}		if (!strncmp(&txt[sizeof(txt) - 7], "columns", 7)) {			column_pattern();			buf[i = 0] = '\0';			crp = 0;		}		if (!strncmp(&txt[sizeof(txt) - 5], "lines", 5)) {			line_pattern();			buf[i = 0] = '\0';			crp = 0;		}		if (!strncmp(&txt[sizeof(txt) - 5], "clear", 5)) {			put_clear();			buf[i = 0] = '\0';			crp = 0;		}		if (!strncmp(&txt[sizeof(txt) - 4], "high", 4)) {			high_bit ^= 0x80;			if (high_bit) {				ptextln("\nParity bit set");			} else {				ptextln("\nParity bit reset");			}		}		if (!strncmp(&txt[sizeof(txt) - 4], "help", 4)) {			put_crlf();			report_help(crx);		}		if (!strncmp(&txt[sizeof(txt) - 4], "echo", 4)) {			/* display the last status report */			/* clear bypass condition on Tek terminals */			put_crlf();			if (i >= 4) {				buf[i -= 4] = '\0';			}			put_str(expand(buf));		}		if (save_scan_mode &&			!strncmp(&txt[sizeof(txt) - 4], "scan", 4)) {			/* toggle scan mode */			scan_mode = !scan_mode;		}		if (!strncmp(&txt[sizeof(txt) - 3], "end", 3))			break;		if (!strncmp(&txt[sizeof(txt) - 3], "hex", 3)) {			if (crx) {				/* display the last status report in hex */				/* clear bypass condition on Tek terminals */				put_crlf();				if (i >= 3) {					buf[i -= 3] = '\0';				}				put_str(hex_expand_to(buf, 3));			} else {				hex_display = !hex_display;			}		}		if (!strncmp(&txt[sizeof(txt) - 3], "two", 3))			crx = 2;		if (!strncmp(&txt[sizeof(txt) - 3], "one", 3))			crx = 1;		if (!strncmp(&txt[sizeof(txt) - 3], "all", 3))			crx = 0;	}	scan_mode = save_scan_mode;	put_crlf();	tty_set();	if (crx) {		ptextln("End of status report test.");	} else {		ptextln("End of echo test.");	}}

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
香港成人在线视频| 国产精品美女久久久久久久| 日韩免费电影网站| 国产视频一区二区在线观看| 亚洲人成网站色在线观看| 亚洲mv在线观看| 国产精品一区二区果冻传媒| 成人黄色av电影| 欧美曰成人黄网| 久久夜色精品一区| 综合久久久久综合| 日本不卡高清视频| 97久久超碰国产精品电影| 欧美高清视频不卡网| 久久精品在这里| 五月婷婷综合激情| 国产伦理精品不卡| 欧美视频中文一区二区三区在线观看| 精品福利在线导航| 一区二区视频在线看| 久久99精品久久久久久国产越南| 波多野结衣的一区二区三区| 在线不卡一区二区| 最新久久zyz资源站| 美女在线观看视频一区二区| 色婷婷久久久综合中文字幕| 久久综合精品国产一区二区三区| 亚洲美女视频在线| 国产精品资源在线看| 精品视频在线看| 成人免费在线观看入口| 久久66热re国产| 欧美日韩国产系列| 亚洲欧美综合另类在线卡通| 国产在线精品国自产拍免费| 欧美酷刑日本凌虐凌虐| 亚洲日韩欧美一区二区在线| 国产精品一线二线三线| 欧美一区二区啪啪| 亚洲一二三级电影| 99re在线视频这里只有精品| 26uuu亚洲| 蜜臀久久久久久久| 欧美性猛交xxxx黑人交| 亚洲日本va午夜在线影院| 国产精品原创巨作av| 欧美一区二区视频在线观看| 一区二区三区丝袜| 91免费国产视频网站| 中文字幕 久热精品 视频在线 | 在线观看亚洲精品| 国产三级一区二区| 韩国在线一区二区| 欧美电视剧在线看免费| 天堂va蜜桃一区二区三区| 91视频一区二区三区| 国产精品久久久久一区二区三区| 国产美女视频一区| 久久久久久久久99精品| 久久国产成人午夜av影院| 88在线观看91蜜桃国自产| 亚洲国产视频一区| 欧美日韩日日摸| 亚洲国产日产av| 欧美日韩美女一区二区| 亚洲一卡二卡三卡四卡| 日本久久一区二区| 亚洲一区二区三区视频在线播放 | 亚洲精品国产a| 色94色欧美sute亚洲线路一久| 亚洲色图一区二区| 日本精品视频一区二区| 一区二区三区产品免费精品久久75| 色哟哟国产精品| 亚洲制服丝袜一区| 在线成人免费观看| 理论片日本一区| 久久亚洲免费视频| 国产成人午夜高潮毛片| 国产日韩欧美精品电影三级在线| 风流少妇一区二区| 亚洲欧美自拍偷拍色图| 日本福利一区二区| 日韩和欧美的一区| 欧美一个色资源| 国产麻豆午夜三级精品| 中文字幕va一区二区三区| 91丝袜呻吟高潮美腿白嫩在线观看| 亚洲欧美偷拍卡通变态| 在线视频国内自拍亚洲视频| 天天综合天天综合色| 欧美电视剧在线看免费| 国产成人h网站| 亚洲欧美国产高清| 欧美久久久久久久久中文字幕| 日本sm残虐另类| 久久久久久久久免费| av午夜精品一区二区三区| 一区二区三区蜜桃网| 5858s免费视频成人| 激情图片小说一区| 国产精品第13页| 9191精品国产综合久久久久久| 激情五月激情综合网| 中日韩免费视频中文字幕| 欧美伊人久久久久久午夜久久久久| 日本成人在线不卡视频| xvideos.蜜桃一区二区| 91色综合久久久久婷婷| 青青青伊人色综合久久| 国产精品久线在线观看| 欧美日免费三级在线| 极品少妇一区二区三区精品视频| 中文字幕精品三区| 欧美日本在线播放| 国产成人av影院| 亚洲国产中文字幕| 国产午夜精品一区二区三区视频| 91色综合久久久久婷婷| 久久99热狠狠色一区二区| 亚洲欧洲日韩在线| 日韩午夜激情视频| 91在线小视频| 老司机免费视频一区二区| 亚洲欧洲成人精品av97| 欧美一区二区精美| 91网站黄www| 久久av老司机精品网站导航| 一区二区三区在线视频观看58| 精品国产乱码久久久久久蜜臀 | 亚洲精品中文字幕乱码三区| 欧美一区二区视频在线观看2022| 波多野结衣视频一区| 蜜桃av一区二区在线观看| 亚洲精品ww久久久久久p站| 久久综合久色欧美综合狠狠| 91久久久免费一区二区| 国产激情视频一区二区在线观看 | 91精品国产入口在线| 91色porny在线视频| 国产综合色精品一区二区三区| 一区二区三区日韩精品| 国产日韩三级在线| 精品少妇一区二区三区在线视频| 色哟哟一区二区在线观看| 国产aⅴ综合色| 麻豆精品新av中文字幕| 亚洲第一成人在线| 亚洲精品日韩一| 国产精品久久网站| 国产亚洲成aⅴ人片在线观看 | 久久精品99国产国产精| 夜夜精品浪潮av一区二区三区| 国产精品天干天干在线综合| 欧美一区二区三区不卡| 欧美区一区二区三区| 91美女在线观看| www.视频一区| 成人h动漫精品一区二区| 激情文学综合丁香| 久久超碰97中文字幕| 日韩精品1区2区3区| 性久久久久久久| 亚洲国产欧美在线| 亚洲一区二区在线免费观看视频| 亚洲欧美精品午睡沙发| 国产精品狼人久久影院观看方式| 久久久久久久久久久电影| 久久中文娱乐网| 日韩欧美的一区| 欧美一级艳片视频免费观看| 精品视频资源站| 欧美日韩国产高清一区二区三区 | 午夜亚洲国产au精品一区二区| 有坂深雪av一区二区精品| 国产精品灌醉下药二区| 中文一区一区三区高中清不卡| 国产日韩欧美电影| 国产日韩综合av| 国产精品国产三级国产aⅴ原创| 亚洲国产精品成人综合| 国产精品欧美经典| **欧美大码日韩| 一区二区三区在线免费| 一区二区三区久久久| 亚洲电影激情视频网站| 五月综合激情婷婷六月色窝| 日本不卡一区二区三区| 免费成人在线观看视频| 激情久久久久久久久久久久久久久久| 精品一区二区三区免费播放| 韩国女主播成人在线| 国产jizzjizz一区二区| 成人福利视频网站| 99精品桃花视频在线观看| 欧洲视频一区二区| 日韩一区和二区| 久久精品视频一区| 亚洲欧美综合另类在线卡通| 亚洲激情中文1区|