spz-lab4/inc/color.h

23 lines
388 B
C

#ifndef INC_COLOR_H
#define INC_COLOR_H
#include "config.h"
#if COLOR_ENABLE == 1
#define COLOR_RESET "\x1b[0m"
#define COLOR_RED "\x1b[0;31m"
#define COLOR_YELLOW "\x1b[0;33m"
#define COLOR_BLUE "\x1b[0;34m"
#define COLOR_CYAN "\x1b[0;36m"
#else
#define COLOR_RESET ""
#define COLOR_RED ""
#define COLOR_YELLOW ""
#define COLOR_BLUE ""
#define COLOR_CYAN ""
#endif
#endif