7 lines
187 B
C
7 lines
187 B
C
|
/* kb.h - interface for keyboard I/O */
|
||
|
/* The implementation is in kbunix.c, kbmsdos.c, kbvms.c, etc. */
|
||
|
|
||
|
void kbCbreak(void), kbNorm(void);
|
||
|
int kbGet(void);
|
||
|
void kbFlush(int thorough);
|