2019-01-23 09:35:39 +01:00

29 lines
655 B
C

/* halfop.c header file.
*
* IRC Services is copyright (c) 1996-2009 Andrew Church.
* E-mail: <achurch@achurch.org>
* Parts written by Andrew Kempe and others.
* This program is free but copyrighted software; see the file GPL.txt for
* details.
*/
#ifndef HALFOP_H
#define HALFOP_H
#define init_halfop RENAME_SYMBOL(init_halfop)
#define exit_halfop RENAME_SYMBOL(exit_halfop)
extern int init_halfop(void);
extern void exit_halfop(void);
#endif
/*
* Local variables:
* c-file-style: "stroustrup"
* c-file-offsets: ((case-label . *) (statement-case-intro . *))
* indent-tabs-mode: nil
* End:
*
* vim: expandtab shiftwidth=4:
*/