1720d365335ed12249a29a9a19942282d6c04600
[pintos-anon] / src / devices / kbd.h
1 #ifndef DEVICES_KBD_H
2 #define DEVICES_KBD_H
3
4 #include <stdint.h>
5
6 void kbd_init (void);
7 uint8_t kbd_getc (void);
8
9 #endif /* devices/kbd.h */