]> jfr.im git - irc/quakenet/newserv.git/blame - chanprofile/chanprofile.h
A4STATS: remove E style escapes and switch to createtable for indices
[irc/quakenet/newserv.git] / chanprofile / chanprofile.h
CommitLineData
6cf96ae3 1#ifndef CHANPROFILE_H
2#define CHANPROFILE_H
3
4#include "../nick/nick.h"
5
6#define CPHASHSIZE 50000
7
8struct 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
17struct chanprofile *cptable[CPHASHSIZE];
18
19#endif