ignore
[mirrors/Programs.git] / c / kbhit.c
1 #include <stdio.h>
2 #include <curses.h>
3
4 int 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.257475 seconds and 4 git commands to generate.