Update keyboard.h

fixed typo in header include
This commit is contained in:
2026-01-25 08:24:43 -08:00
committed by GitHub
parent 745deeddde
commit 1037ba4f54

View File

@@ -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
char keyboard_get_char(void);
extern const char scancode_map[128];
#endif