mirror of
https://github.com/gbowne1/ClassicOS.git
synced 2025-05-15 09:01:27 -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
|