blob: f051fed331eaefede60953768f79905491b87f4d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
typedef struct {
char url[128];
char nick[25];
char real_name[25];
char colors[2];
char channels[5][33];
char alert_type;
char show_ping;
char hide_motd;
char atract_away;
} conf_t;
extern conf_t *conf;
|