ircbot.c  0.3.0
Multi-platform IRC bot in pure C
commands.h
Go to the documentation of this file.
1 
7 #ifndef IRCBOT_BOT_COMMANDS_H_
8 #define IRCBOT_BOT_COMMANDS_H_
9 struct IRC_Bot;
15 int commands_ident(struct IRC_Bot *bot);
16 
22 int commands_pong(struct IRC_Bot *bot, const char pong_id[]);
23 #endif // IRCBOT_BOT_COMMANDS_H_
int commands_ident(struct IRC_Bot *bot)
Send an ident response to the server.
Definition: commands.c:16
Struct holding relevant data to the actual bot.
Definition: bot.h:32
int commands_pong(struct IRC_Bot *bot, const char pong_id[])
Send a PONG message to the server.
Definition: commands.c:43