Import from http://svn.freenode.net/ircd-seven/private/beu/seven (r196).
[seven-1.x.git] / libseven / libseven.h
blob3203807218224079252a3b493ad18eeef49b37b8
1 /*
2 * charybdis: A slightly useful ircd.
3 * libseven.h: library entrypoint
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
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.
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.
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
25 * $Id: libseven.h 181 2006-12-18 02:56:07Z beu $
28 #ifndef _LIBCHARYBDIS_H
29 #define _LIBCHARYBDIS_H
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"
42 extern void libseven_log(const char *str, ...);
43 extern void libseven_restart(const char *str, ...);
44 extern void libseven_die(const char *str, ...);
45 extern void libseven_init(void (*)(const char *),
46 void (*)(const char *), void (*)(const char *));
48 #endif