⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 colors.h

📁 CAN-EPP上位机软件linux版的 带驱动程序和测试程序
💻 H
字号:
/*	 *	color term 				--by zychen */#ifndef _COLORS_H_#define _COLORS_H_#define BLACK	"0"#define RED	"1"#define GREEN	"2"#define YELLOW	"3"#define BLUE	"4"#define PINK	"5"#define CYAN	"6"#define WHITE	"7"#define FORE	"3"#define BACK	"4"#define BOLD	"1"#define FRCOLOR(str,fore_color) "\033[" FORE fore_color "m" str "\033[0m"#define BKCOLOR(str,back_color) "\033[" BACK back_color "m" str "\033[0m"#define COLOR(str,fore_color,back_color) "\033[" FORE fore_color ";" BACK back_color "m" str "\033[0m"#define FRCOLORB(str,fore_color) "\033[" FORE fore_color ";" BOLD "m" str "\033[0m"#define BKCOLORB(str,back_color) "\033[" BACK back_color ";" BOLD "m" str "\033[0m"#define COLORB(str,fore_color,back_color) "\033[" FORE fore_color ";" BACK back_color ";" BOLD "m" str "\033[0m"#define DEFBOLD(str) "\033[1m" str "\033[0m"#define START_COLOR	"\033["#define STOP_COLOR	"m"#define DEFAULT_COLOR	"\033[0m"#endif /* _COLORS_H_ */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -