1 /*
2  * irc-server.h - IRC server header definitions
3  *
4  * Copyright (C) 2011-2013 Thien-Thi Nguyen
5  * Copyright (C) 2000 Stefan Jahn <stefan@lkcc.org>
6  *
7  * This is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 3, or (at your option)
10  * any later version.
11  *
12  * This software is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this package.  If not, see <http://www.gnu.org/licenses/>.
19  */
20 
21 #ifndef __IRC_SERVER_H__
22 #define __IRC_SERVER_H__
23 
24 /*
25  * These functions are exported from this IRC server module.
26  */
27 int irc_parse_line (char *line, char *fmt, ...);
28 void irc_delete_servers (irc_config_t *cfg);
29 void irc_connect_servers (irc_config_t *cfg);
30 int irc_count_servers (irc_config_t *cfg);
31 
32 #endif /* __IRC_SERVER_H__ */
33