1
0
mirror of https://github.com/irssi/irssi.git synced 2024-06-16 06:25:24 +00:00
irssi/src/irc/core/ctcp.h
2019-05-01 22:22:22 +02:00

15 lines
374 B
C

#ifndef IRSSI_IRC_CORE_CTCP_H
#define IRSSI_IRC_CORE_CTCP_H
/* Register/unregister CTCP command, so it shows in CTCP CLIENTINFO */
void ctcp_register(const char *name);
void ctcp_unregister(const char *name);
/* Send CTCP reply with flood protection */
void ctcp_send_reply(IRC_SERVER_REC *server, const char *data);
void ctcp_init(void);
void ctcp_deinit(void);
#endif