ais/ais.h

25 lines
554 B
C
Raw Normal View History

2020-11-16 11:10:11 +08:00
#ifndef AIS_H
#define AIS_H
2020-05-29 11:09:39 +08:00
2020-11-16 11:10:11 +08:00
#define WHITELIST_IP_NUM 2700
2020-05-29 11:09:39 +08:00
// 字体颜色
#define NONE "\033[m"
#define RED "\033[0;32;31m"
#define LIGHT_RED "\033[1;31m"
#define GREEN "\033[0;32;32m"
#define LIGHT_GREEN "\033[1;32m"
#define BLUE "\033[0;32;34m"
#define LIGHT_BLUE "\033[1;34m"
#define DARY_GRAY "\033[1;30m"
#define CYAN "\033[0;36m"
#define LIGHT_CYAN "\033[1;36m"
#define PURPLE "\033[0;35m"
#define LIGHT_PURPLE "\033[1;35m"
#define BROWN "\033[0;33m"
#define YELLOW "\033[1;33m"
#define LIGHT_GRAY "\033[0;37m"
#define WHITE "\033[1;37m"
2020-05-29 11:09:39 +08:00
#endif