mirror of
https://github.com/irssi/irssi.git
synced 2026-08-15 22:52:15 +02:00
10 lines
189 B
C
10 lines
189 B
C
|
|
#ifndef __CTCP_H
|
||
|
|
#define __CTCP_H
|
||
|
|
|
||
|
|
void ctcp_init(void);
|
||
|
|
void ctcp_deinit(void);
|
||
|
|
|
||
|
|
/* Send CTCP reply with flood protection */
|
||
|
|
void ctcp_send_reply(SERVER_REC *server, gchar *data);
|
||
|
|
|
||
|
|
#endif
|