📄 timegetc.c
字号:
/*** TIMEGETC.C - waits for a given number of seconds for the user to press** a key. Returns the key pressed, or EOF if time expires**** by Bob Jarvis*/#include <stdio.h>#include <time.h>#include <conio.h>#include "snipkbio.h"int timed_getch(int n_seconds){ time_t start, now; start = time(NULL); now = start; while(difftime(now, start) < (double)n_seconds && !kbhit()) { now = time(NULL); } if(kbhit()) return getch(); else return EOF;}#ifdef TESTmain(){ int c; printf("Starting a 5 second delay...\n"); c = timed_getch(5); if(c == EOF) printf("Timer expired\n"); else printf("Key was pressed, c = '%c'\n", c); return 0;}#endif /* TEST */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -