-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIrc.hpp
More file actions
35 lines (31 loc) · 679 Bytes
/
Copy pathIrc.hpp
File metadata and controls
35 lines (31 loc) · 679 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#ifndef IRC_HPP
#define IRC_HPP
#include "numerical_replies.hpp"
# include <sys/types.h>
# include <sys/socket.h>
# include <netinet/in.h>
# include <arpa/inet.h>
# include <netdb.h>
# include <cstring>
# include <cstdlib>
#include <csignal>
# include <iostream>
# include <vector>
# include <map>
# include <poll.h>
# include <unistd.h>
# include <sstream>
# include <string>
# include <cerrno>
# include <ctime>
# include <algorithm>
# include <cstdio>
#include <fstream>
#define BLUE "\033[34m"
#define RED "\033[31m"
#define GREEN "\033[32m"
#define YELLOW "\033[33m"
#define MAGENTA "\033[35m"
#define CYAN "\033[36m"
#define WHITE "\033[0m"
#endif //INC_42_IRC_IRC_HPP