]> jfr.im git - irc/quakenet/newserv.git/blob - chanprofile/chanprofile.h
A4STATS: remove E style escapes and switch to createtable for indices
[irc/quakenet/newserv.git] / chanprofile / chanprofile.h
1 #ifndef CHANPROFILE_H
2 #define CHANPROFILE_H
3
4 #include "../nick/nick.h"
5
6 #define CPHASHSIZE 50000
7
8 struct chanprofile {
9 unsigned int clones;
10 unsigned int hashval;
11 unsigned int ccount;
12 unsigned int clen;
13 nick **nicks;
14 struct chanprofile *next;
15 };
16
17 struct chanprofile *cptable[CPHASHSIZE];
18
19 #endif