/* * xbot: Just another IRC bot * * Written by Aaron Blakely **/ #ifndef IRC_H #define IRC_H #include struct irc_conn { FILE *srv_fd; char nick[32]; char *admin; char *host; char *port; char *real_name; // I/O Buffers char out[4096]; char in[4096]; }; void irc_connect(struct irc_conn *bot); void irc_auth(struct irc_conn *bot); void irc_notice(struct irc_conn *bot, char *to, char *msg); void irc_raw(struct irc_conn *bot, char *fmt, ...); void irc_parse_raw(struct irc_conn *bot, char *raw); #endif