]> jfr.im git - irc/quakenet/newserv.git/blame - helpmod2/htopic.h
Merge pull request #1 from meeb/meeb
[irc/quakenet/newserv.git] / helpmod2 / htopic.h
CommitLineData
c86edd1d
Q
1/* H topic system */
2
3#ifndef HTOPIC_H
4#define HTOPIC_H
5
6typedef struct htopic_struct
7{
8 sstring *entry;
9 struct htopic_struct *next;
10} htopic;
11
12htopic *htopic_add(htopic**, const char*, int);
13htopic *htopic_del(htopic**, htopic*);
14void htopic_del_all(htopic**);
15
16htopic *htopic_get(htopic*, int);
17
18const char *htopic_construct(htopic*);
19
20int htopic_count(htopic*);
21int htopic_len(htopic*);
22
23#endif