📄 unxgetch.c
字号:
/* +++Date last modified: 05-Jul-1997 */
/*
** UNXGETCH.C - Non-blocking console input function for Unix/Posix.
**
** public domain by Bob Stout using Steve Poole's term_option().
*/
#include "unxconio.h"
int getch()
{
int istat, key;
char buf[2];
if (0 > term_option(1))
return EOF;
if (0 > term_option(2))
return EOF;
istat = read(STDIN_FILENO,&buf,1);
if (istat < 0)
key = EOF;
else key = (int)buf[0];
term_option(0);
return key;
}
#ifdef TEST
#include <ctype.h>
main()
{
int key;
printf("Press any key to continue...");
fflush(stdout);
key = getch();
printf("\n\nYou pressed \"%c\"\n", toupper(key));
return 0;
}
#endif /* TEST */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -