mirror of
https://github.com/gbowne1/ClassicOS.git
synced 2025-06-06 00:41:28 -07:00
8 lines
133 B
C
8 lines
133 B
C
#ifndef KEYBOARD_H
|
|
#define KEYBOARD_H
|
|
|
|
void keyboard_init(void);
|
|
char keyboard_get_char(void); // Blocking read from buffer
|
|
|
|
#endif
|