IRC SERVER
The goal of this project is to make you write your own IRC server.
Color.hpp
Go to the documentation of this file.
1 #ifndef COLOR_H
2 #define COLOR_H
3 
4 #define C_X "\033[0m"
5 #define C_YELLOW "\033[33m"
6 #define C_RED "\033[31;1m"
7 #define C_GREEN "\033[32;1m"
8 #define C_CYAN "\033[36;1m"
9 #define C_WHITE "\033[37;1m"
10 #define C_BLUE "\033[34;1m"
11 #define C_MAGENTA "\033[35;1m"
12 #define C_UP "\033[A"
13 #define C_CUT "\033[K"
14 #define C_U "\033[4m"
15 #define C_BLINK "\033[5m"
16 #define C_BOLD "\033[1m"
17 
18 #endif