nanoFORTH  v2.2
conio.h
Go to the documentation of this file.
1 /*
2  Console I/O
3 */
4 
5 
6 #ifndef _CONIO_H_
7 #define _CONIO_H_
8 
9 
10 int kbhit(void);
11 int getch(void);
12 int putch(int c);
13 
14 
15 #endif
putch
int putch(int c)
Definition: conio.c:59
getch
int getch(void)
Definition: conio.c:45
kbhit
int kbhit(void)
Definition: conio.c:26