summaryrefslogtreecommitdiff
path: root/libc/include
diff options
context:
space:
mode:
authorRobert de Bath <rdebath@poboxes.com>2002-01-12 20:42:42 +0100
committerLubomir Rintel <lkundrak@v3.sk>2013-10-23 23:48:46 +0200
commitd91fa39567f5659e3931cf61517d62fddcd87570 (patch)
tree20583acd4f345a4f5c9a7772870ef972cb8a3b14 /libc/include
parentbff547eabb6678ec8e71ffbcfbf9a4f05c94d949 (diff)
downloaddev86-d91fa39567f5659e3931cf61517d62fddcd87570.tar.gz
Import Dev86src-0.16.1.tar.gzv0.16.1
Diffstat (limited to 'libc/include')
-rw-r--r--libc/include/conio.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/libc/include/conio.h b/libc/include/conio.h
new file mode 100644
index 0000000..7219a8f
--- /dev/null
+++ b/libc/include/conio.h
@@ -0,0 +1,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