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