From e52423dad1975925d849367620fa37299f33f1d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pavel=20Kala=C5=A1=20=28Floxen=29?= Date: Tue, 14 Jul 2026 19:32:55 +0200 Subject: [PATCH] =?UTF-8?q?P=C5=99id=C3=A1na=20hlavi=C4=8Dka=20pro=20keybo?= =?UTF-8?q?ard.c?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- include/keyboard.h | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 include/keyboard.h diff --git a/include/keyboard.h b/include/keyboard.h new file mode 100644 index 0000000..231ee17 --- /dev/null +++ b/include/keyboard.h @@ -0,0 +1,19 @@ +/* + * AsterOS Kernel + * Autor: Pavel Kalaš + * Rok: 2026 + * + */ + +/* + * Tento soubor deklaruje rozhrani pro PS/2 klavesnici. + * Poskytuje funkce pro cteni stisknutych klaves a nacitani + * celych radku textu od uzivatele. + */ + + #ifndef KEYBOARD_H +#define KEYBOARD_H + +int keyboard_readline(char *buffer, int max_len); + +#endif