?? tenotsup.c
字號:
/* tenotsup.c - tenotsup */
#include <stdio.h>
/*------------------------------------------------------------------------
* tenotsup - an unsupported escape command
*------------------------------------------------------------------------
*/
/*ARGSUSED*/
int
tenotsup(rfp, tfp, c)
FILE *rfp, *tfp;
int c;
{
fprintf(tfp, "\nunsupported escape: %c.\n", c);
fprintf(tfp, "s - turn on scripting\t\t");
fprintf(tfp, "u - turn off scripting\n");
fprintf(tfp, ". - disconnect\t\t\t");
fprintf(tfp, "^Z - suspend\n");
fprintf(tfp, "^T - print status\n");
return 0;
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -