Print statistics at power off.
[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 void kbd_print_stats (void);
9
10 #endif /* devices/kbd.h */