nanoFORTH v2.2
Loading...
Searching...
No Matches
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
10int kbhit(void);
11int getch(void);
12int putch(int c);
13
14
15#endif
int putch(int c)
Definition conio.c:59
int kbhit(void)
Definition conio.c:26
int getch(void)
Definition conio.c:45