Nickmatch cache. A couple of helper functions to check if channel nicks

belong to something. Used for checking nickmasks in highlighting and
ignores (well, ignore isn't done yet).


git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1138 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2001-01-21 04:09:48 +00:00 committed by cras
commit 1bfa0e1ee3
4 changed files with 151 additions and 0 deletions

View file

@ -39,6 +39,7 @@
#include "channels.h"
#include "queries.h"
#include "nicklist.h"
#include "nickmatch-cache.h"
void chat_commands_init(void);
void chat_commands_deinit(void);
@ -69,6 +70,7 @@ void core_init(void)
channels_init();
queries_init();
nicklist_init();
nickmatch_cache_init();
chat_commands_init();
settings_check();
@ -78,6 +80,7 @@ void core_deinit(void)
{
chat_commands_deinit();
nickmatch_cache_deinit();
nicklist_deinit();
queries_deinit();
channels_deinit();