unxgetch.c

来自「国外网站上的一些精典的C程序」· C语言 代码 · 共 42 行

C
42
字号
/***  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 + =
减小字号Ctrl + -
显示快捷键?