mirror of
https://github.com/irssi/irssi.git
synced 2026-08-16 15:12:11 +02:00
There's a function in the standard library of these OSes that conflict with this function. Prefix it with `irc_`.
10 lines
296 B
C
10 lines
296 B
C
#ifndef __IRC_CAP_H
|
|
#define __IRC_CAP_H
|
|
|
|
/* this is prefixed as to not conflict with an AIX/i function in their stdlib */
|
|
void irc_cap_init(void);
|
|
void cap_deinit(void);
|
|
int cap_toggle (IRC_SERVER_REC *server, char *cap, int enable);
|
|
void cap_finish_negotiation (IRC_SERVER_REC *server);
|
|
|
|
#endif
|