diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/commands.h | 1 | ||||
-rw-r--r-- | include/message.h | 1 | ||||
-rw-r--r-- | include/users.h | 4 |
3 files changed, 4 insertions, 2 deletions
diff --git a/include/commands.h b/include/commands.h index 0a2e9fbd7..81e28fbaf 100644 --- a/include/commands.h +++ b/include/commands.h @@ -35,7 +35,6 @@ bool host_matches_everyone(const std::string &mask, userrec* user); bool ip_matches_everyone(const std::string &ip, userrec* user); bool nick_matches_everyone(const std::string &nick, userrec* user); int operstrcmp(const char* data,const char* input); -void split_chlist(userrec* user, userrec* dest, const std::string &cl); /* XXX Serious WTFness XXX * diff --git a/include/message.h b/include/message.h index f53f3d9d2..b1af53bbc 100644 --- a/include/message.h +++ b/include/message.h @@ -32,7 +32,6 @@ int isident(const char* n); int isnick(const char* n); const char* cmode(userrec *user, chanrec *chan); int cstatus(userrec *user, chanrec *chan); -std::string chlist(userrec *user, userrec* source); int cflags(userrec *user, chanrec *chan); #endif diff --git a/include/users.h b/include/users.h index d0ed021a6..1d8e918aa 100644 --- a/include/users.h +++ b/include/users.h @@ -646,6 +646,10 @@ class userrec : public connection void NoticeAll(char* text, ...); + std::string ChannelList(userrec* source); + + void SplitChanList(userrec* dest, const std::string &cl); + /** Default destructor */ virtual ~userrec(); |