10 lines
257 B
C
10 lines
257 B
C
#define LOG_RED "\x1b[31m"
|
|
#define LOG_BOLD "\x1b[1m"
|
|
#define LOG_BLUE "\x1b[34m"
|
|
#define LOG_GREEN "\x1b[32m"
|
|
#define LOG_RESET "\x1b[0m"
|
|
|
|
void info(const char* msg, ...);
|
|
void error(const char* msg, ...);
|
|
void success(const char* msg, ...);
|