#ifndef color_h #define color_h #include #define RESET 0 #define BOLD 1 #define DIM 2 #define UNDERLINE 3 #define BLINK 4 #define REVERSE 7 #define HIDDEN 8 #define BLACK 0 #define RED 1 #define GREEN 2 #define YELLOW 3 #define BLUE 4 #define MAGENTA 5 #define CYAN 6 #define WHITE 9 extern void textcolor(int attr, int fg, int bg); extern void setcolor(char *col,int attr, int fg, int bg); #endif