mirror of
https://github.com/irssi/irssi.git
synced 2026-08-11 04:43:34 +02:00
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1191 dbcabf3a-b0e7-0310-adc4-f8d773084564
17 lines
430 B
C
17 lines
430 B
C
#ifndef __IRC_NICKLIST_H
|
|
#define __IRC_NICKLIST_H
|
|
|
|
#include "nicklist.h"
|
|
#include "irc-channels.h"
|
|
|
|
/* Add new nick to list */
|
|
NICK_REC *irc_nicklist_insert(IRC_CHANNEL_REC *channel, const char *nick,
|
|
int op, int voice, int send_massjoin);
|
|
|
|
/* Remove all "extra" characters from `nick'. Like _nick_ -> nick */
|
|
char *irc_nick_strip(const char *nick);
|
|
|
|
void irc_nicklist_init(void);
|
|
void irc_nicklist_deinit(void);
|
|
|
|
#endif
|