printf 列印紅色字型

AS520213211314發表於2020-12-07

#define ANSI_CURSOR_UP            "\e[%dA"
#define ANSI_CURSOR_DOWN        "\e[%dB"
#define ANSI_CURSOR_FORWARD        "\e[%dC"
#define ANSI_CURSOR_BACK        "\e[%dD"
#define ANSI_CURSOR_NEXTLINE        "\e[%dE"
#define ANSI_CURSOR_PREVIOUSLINE    "\e[%dF"
#define ANSI_CURSOR_COLUMN        "\e[%dG"
#define ANSI_CURSOR_POSITION        "\e[%d;%dH"
#define ANSI_CURSOR_SHOW        "\e[?25h"
#define ANSI_CURSOR_HIDE        "\e[?25l"
#define ANSI_CLEAR_CONSOLE        "\e[2J"
#define ANSI_CLEAR_LINE_TO_END        "\e[0K"
#define ANSI_CLEAR_LINE            "\e[2K"
#define ANSI_COLOR_RESET        "\e[0m"
#define ANSI_COLOR_REVERSE        "\e[7m"
 

/* print color setting */
#define ANSI_COLOR_RED            "\x1b[31m"
#define ANSI_COLOR_GREEN        "\x1b[32m"
#define ANSI_COLOR_YELLOW        "\x1b[33m"
#define ANSI_COLOR_BLUE            "\x1b[34m"
#define ANSI_COLOR_MAGENTA        "\x1b[35m"
#define ANSI_COLOR_CYAN            "\x1b[36m"
#define ANSI_COLOR_WHITE        "\x1b[37m"
#define ANSI_COLOR_RESET        "\x1b[0m"

 

printf("%s get emb part info from nvtpack node is failed: %s %u %s\n", ANSI_COLOR_RED, part_name, part_id, ANSI_COLOR_RESET);

 

相關文章