ecrypt/include/colors.h

10 lines
155 B
C
Raw Permalink Normal View History

2023-03-24 11:22:19 -04:00
/* colors.h - define output colors */
#ifndef COLORS_H_
#define COLORS_H_
#define ANSI_COLOR_BLUE "\x1b[34m"
#define ANSI_COLOR_RESET "\x1b[0m"
#endif