2000-08-26 15:39:44 +00:00
|
|
|
#ifndef __IRC_NICKLIST_H
|
|
|
|
|
#define __IRC_NICKLIST_H
|
|
|
|
|
|
|
|
|
|
#include "nicklist.h"
|
|
|
|
|
|
2001-02-02 22:10:20 +00:00
|
|
|
/* Add new nick to list */
|
|
|
|
|
NICK_REC *irc_nicklist_insert(IRC_CHANNEL_REC *channel, const char *nick,
|
2001-12-09 17:13:48 +00:00
|
|
|
int op, int halfop, int voice, int send_massjoin);
|
2000-08-26 15:39:44 +00:00
|
|
|
|
|
|
|
|
/* Remove all "extra" characters from `nick'. Like _nick_ -> nick */
|
|
|
|
|
char *irc_nick_strip(const char *nick);
|
|
|
|
|
|
2001-02-02 22:10:20 +00:00
|
|
|
void irc_nicklist_init(void);
|
|
|
|
|
void irc_nicklist_deinit(void);
|
|
|
|
|
|
2000-08-26 15:39:44 +00:00
|
|
|
#endif
|