SayoriOS  0.3.3
status_loggers.h
1 #pragma once
2 
3 #define COLOR_ERROR 0xA5383B
4 #define COLOR_ALERT 0xA66938
5 #define COLOR_ATENTION 0xDBF03E
6 #define COLOR_BG 0x000000
7 
8 #include <io/tty.h>
9 
10 void tty_error(char* format, ...);
11 void tty_attention(char* format, ...);
12 void tty_alert(char* format, ...);
13 void tty_global_error(char* format, ...);