This commit is contained in:
2023-03-24 11:22:19 -04:00
commit 845eddafd4
6 changed files with 117 additions and 0 deletions

9
include/colors.h Normal file
View File

@@ -0,0 +1,9 @@
/* colors.h - define output colors */
#ifndef COLORS_H_
#define COLORS_H_
#define ANSI_COLOR_BLUE "\x1b[34m"
#define ANSI_COLOR_RESET "\x1b[0m"
#endif