mirror of
https://github.com/irssi/irssi.git
synced 2026-08-15 14:42:08 +02:00
12 lines
254 B
C
12 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
|