📄 send2e.c
字号:
/**********************************************************
* Send2E.C - support for INT 2Eh *
* Jim Kyle, July 1990 *
**********************************************************/
#include <stdio.h>
#include <string.h>
int have2e( void ); /* prototype */
void do2e( char * cmdstr ); /* prototype */
int Send2E( char * command )
{ char temp[130];
int retval;
if( retval = have2e() )
{ sprintf( temp, "%c%s\r", strlen( command ), command );
do2e( temp );
}
return retval;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -