|
#ifndef INC_COLOR_H
|
|
#define INC_COLOR_H
|
|
|
|
|
|
#include "config.h"
|
|
|
|
#if COLOR_ENABLE == 1
|
|
#define COLOR_RESET "\e[0m"
|
|
#define COLOR_RED "\e[0;31m"
|
|
#define COLOR_YELLOW "\e[0;33m"
|
|
#else
|
|
#define COLOR_RESET ""
|
|
#define COLOR_RED ""
|
|
#define COLOR_YELLOW ""
|
|
#endif
|
|
|
|
|
|
#endif
|