]> arthur.barton.de Git - ngircd-alex.git/blob - src/ngircd/conf.c
- bessere Debug-Ausgaben,
[ngircd-alex.git] / src / ngircd / conf.c
1 /*
2  * ngIRCd -- The Next Generation IRC Daemon
3  * Copyright (c)2001 by Alexander Barton (alex@barton.de)
4  *
5  * Dieses Programm ist freie Software. Sie koennen es unter den Bedingungen
6  * der GNU General Public License (GPL), wie von der Free Software Foundation
7  * herausgegeben, weitergeben und/oder modifizieren, entweder unter Version 2
8  * der Lizenz oder (wenn Sie es wuenschen) jeder spaeteren Version.
9  * Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste
10  * der an comBase beteiligten Autoren finden Sie in der Datei AUTHORS.
11  *
12  * $Id: conf.c,v 1.1 2001/12/12 17:18:20 alex Exp $
13  *
14  * conf.h: Konfiguration des ngircd
15  *
16  * $Log: conf.c,v $
17  * Revision 1.1  2001/12/12 17:18:20  alex
18  * - Modul fuer Server-Konfiguration begonnen.
19  *
20  */
21
22
23 #include <portab.h>
24 #include "global.h"
25
26 #include <imp.h>
27 #include <assert.h>
28
29 #include <exp.h>
30 #include "conf.h"
31
32
33 GLOBAL VOID Conf_Init( VOID )
34 {
35         /* ... */
36 } /* Config_Init */
37
38
39 GLOBAL VOID Conf_Exit( VOID )
40 {
41         /* ... */
42 } /* Config_Exit */
43
44
45 /* -eof- */