blob: f6c7be5189c8b91f217021ce9486fb357060b97c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#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
|