From 457a8c0a4314f896c9b8c3d99c85ff920a75645b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pavel=20Kala=C5=A1=20=28Floxen=29?= Date: Mon, 13 Jul 2026 21:43:36 +0200 Subject: [PATCH] =?UTF-8?q?P=C5=99id=C3=A1n=20header=20bootlogu=20s=20jedn?= =?UTF-8?q?otn=C3=BDm=20stavov=C3=BDm=20API?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- include/bootlog.h | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 include/bootlog.h diff --git a/include/bootlog.h b/include/bootlog.h new file mode 100644 index 0000000..f3e8139 --- /dev/null +++ b/include/bootlog.h @@ -0,0 +1,20 @@ +/* + * AsterOS Kernel + * Autor: Pavel Kalas + * Rok: 2026 + * + */ + +/* + * Header deklaruje jednoduche API pro jednotne stavove vypisy + * ve stylu [ STAV ] zprava, pouzivane hlavne pri boot/setup toku. + */ + +#ifndef ASTER_BOOTLOG_H +#define ASTER_BOOTLOG_H + +void bootlog_state(const char *state, unsigned char state_color, const char *msg); +void bootlog_ok(const char *msg); +void bootlog_error(const char *msg); + +#endif \ No newline at end of file