forked from PsychoticNinja/irssi
using the same message formats as IRC. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@699 dbcabf3a-b0e7-0310-adc4-f8d773084564
13 lines
254 B
C
13 lines
254 B
C
#ifndef __IRC_NICKLIST_H
|
|
#define __IRC_NICKLIST_H
|
|
|
|
#include "nicklist.h"
|
|
|
|
void irc_nicklist_init(void);
|
|
void irc_nicklist_deinit(void);
|
|
|
|
/* Remove all "extra" characters from `nick'. Like _nick_ -> nick */
|
|
char *irc_nick_strip(const char *nick);
|
|
|
|
#endif
|