mirror of
https://github.com/irssi/irssi.git
synced 2026-08-11 04:43:34 +02:00
isupport patch by David Leadbeater
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3211 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
3ccbd0405b
commit
217283caea
30 changed files with 520 additions and 133 deletions
|
|
@ -10,7 +10,14 @@ NICK_REC *irc_nicklist_insert(IRC_CHANNEL_REC *channel, const char *nick,
|
|||
/* Remove all "extra" characters from `nick'. Like _nick_ -> nick */
|
||||
char *irc_nick_strip(const char *nick);
|
||||
|
||||
int irc_nickcmp_rfc1459(const char *, const char *);
|
||||
int irc_nickcmp_ascii(const char *, const char *);
|
||||
|
||||
void irc_nicklist_init(void);
|
||||
void irc_nicklist_deinit(void);
|
||||
|
||||
/* FIXME: to_rfc1459() is missing things */
|
||||
#define to_rfc1459(x) ((x) >= 65 && (x) <= 94 ? (x) + 32 : (x))
|
||||
#define to_ascii(x) ((x) >= 65 && (x) <= 94 ? (x) + 32 : (x))
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue