1 |
/* banexcept.c header file. |
2 |
* |
3 |
* IRC Services is copyright (c) 1996-2009 Andrew Church. |
4 |
* E-mail: <achurch@achurch.org> |
5 |
* Parts written by Andrew Kempe and others. |
6 |
* This program is free but copyrighted software; see the file GPL.txt for |
7 |
* details. |
8 |
*/ |
9 |
|
10 |
#ifndef BANEXCEPT_H |
11 |
#define BANEXCEPT_H |
12 |
|
13 |
/* Note that we need to rename all of our exported symbols to avoid |
14 |
* conflicts when the .c file is included in multiple modules */ |
15 |
#define init_banexcept RENAME_SYMBOL(init_banexcept) |
16 |
#define exit_banexcept RENAME_SYMBOL(exit_banexcept) |
17 |
|
18 |
extern int init_banexcept(void); |
19 |
extern void exit_banexcept(void); |
20 |
|
21 |
#endif |
22 |
|
23 |
/* |
24 |
* Local variables: |
25 |
* c-file-style: "stroustrup" |
26 |
* c-file-offsets: ((case-label . *) (statement-case-intro . *)) |
27 |
* indent-tabs-mode: nil |
28 |
* End: |
29 |
* |
30 |
* vim: expandtab shiftwidth=4: |
31 |
*/ |