]> jfr.im git - irc/rqf/shadowircd.git/blame - libcharybdis/libcharybdis.h
[svn] - update config files
[irc/rqf/shadowircd.git] / libcharybdis / libcharybdis.h
CommitLineData
212380e3 1/*
2 * charybdis: A slightly useful ircd.
3 * libcharybdis.h: library entrypoint
4 *
5 * Copyright (C) 1990 Jarkko Oikarinen and University of Oulu, Co Center
6 * Copyright (C) 1996-2002 Hybrid Development Team
7 * Copyright (C) 2002-2005 ircd-ratbox development team
8 * Copyright (C) 2005 William Pitcock and Jilles Tjoelker
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
23 * USA
24 *
25 * $Id: libcharybdis.h 388 2005-12-07 16:34:40Z nenolod $
26 */
27
28#ifndef _LIBCHARYBDIS_H
29#define _LIBCHARYBDIS_H
30
31#include "stdinc.h"
32#include "res.h"
33#include "numeric.h"
34#include "tools.h"
35#include "memory.h"
36#include "balloc.h"
37#include "linebuf.h"
38#include "sprintf_irc.h"
39#include "commio.h"
40#include "event.h"
41
42extern void libcharybdis_log(const char *str, ...);
43extern void libcharybdis_restart(const char *str, ...);
44extern void libcharybdis_die(const char *str, ...);
45extern void libcharybdis_init(void (*)(const char *),
46 void (*)(const char *), void (*)(const char *));
47
48#endif