Přidána hlavička pro keyboard.c

This commit is contained in:
2026-07-14 19:32:55 +02:00
parent 324610e9cb
commit e52423dad1
+19
View File
@@ -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