summaryrefslogtreecommitdiff
path: root/libc/include/conio.h
blob: 7219a8f82b2ae5b6f9254c6bddd1cae02a387bd4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26

#ifndef __CONIO_H
#define __CONIO_H
#include <features.h>

int cprintf __P((char *, ...));
int cputs __P((char *));
int getch __P((void));
int getche __P((void));
int kbhit __P((void));
int putch __P((int));

#if 0 /* Unimplemented as yet */
char * cgets __P((char *));
int ungetch __P((int));
int cscanf __P((char *, ...));
#endif

#if 0 /* Hummm */
unsigned outpw __P((unsigned int, unsigned int));
unsigned inpw __P((unsigned int));
int outp __P((unsigned int, int));
int inp __P((unsigned int));
#endif

#endif