]> jfr.im git - irc/rqf/shadowircd.git/blob - include/operhash.h
Track who set a dline/kline/xline/resv as in ratbox3.
[irc/rqf/shadowircd.git] / include / operhash.h
1 #ifndef INCLUDED_operhash_h
2 #define INCLUDED_operhash_h
3
4 struct operhash_entry
5 {
6 char *name;
7 int refcount;
8 };
9
10 void init_operhash(void);
11 const char *operhash_add(const char *name);
12 const char *operhash_find(const char *name);
13 void operhash_delete(const char *name);
14
15 #endif