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