docs
[mirrors/Programs.git] / c / kbhit.c
CommitLineData
21c4e167
H
1#include <stdio.h>
2#include <curses.h>
3
4int main(void) {
5 //atexit((void *) endwin);
6 //initscr();
7
8 sleep(3);
9 while(1) {
10 printf("%d,", getc(stdin));
11 }
12}
This page took 0.294018 seconds and 4 git commands to generate.