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

📄 subtermtype.c

📁 &#61599 Douglas Comer
💻 C
字号:
/* subtermtype.c - subtermtype */#include <sys/types.h>#include <stdio.h>#include "telnet.h"extern char	*term;		/* terminal name, from initialization	*//*------------------------------------------------------------------------ * subtermtype - do terminal type option subnegotation *------------------------------------------------------------------------ */intsubtermtype(FILE *sfp, FILE *tfp, int c){	/* have received IAC.SB.TERMTYPE.SEND */	(void) putc(TCIAC, sfp);	(void) putc(TCSB, sfp);	(void) putc(TOTERMTYPE, sfp);	(void) putc(TT_IS, sfp);	fputs(term, sfp);	(void) putc(TCIAC, sfp);	(void) putc(TCSE, sfp);	return 0;}

⌨️ 快捷键说明

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