mirror of
https://github.com/gbowne1/ClassicOS.git
synced 2026-01-29 16:15:20 -08:00
Update keyboard.h
fixed typo in header include
This commit is contained in:
@@ -1,11 +1,12 @@
|
||||
#ifndef KEYBOARD_H
|
||||
#define KEYBOARD_H
|
||||
|
||||
#include <stint.h>
|
||||
#include <stdint.h>
|
||||
|
||||
void keyboard_init(void);
|
||||
void keyboard_buffer_add(char c);
|
||||
char keyboard_get_char(void); // Blocking read from buffer
|
||||
extern const char scancode_map[128];
|
||||
char keyboard_get_char(void);
|
||||
|
||||
extern const char scancode_map[128];
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user