10 lines
155 B
C
10 lines
155 B
C
|
/* colors.h - define output colors */
|
||
|
|
||
|
#ifndef COLORS_H_
|
||
|
#define COLORS_H_
|
||
|
|
||
|
#define ANSI_COLOR_BLUE "\x1b[34m"
|
||
|
#define ANSI_COLOR_RESET "\x1b[0m"
|
||
|
|
||
|
#endif
|