]> jfr.im git - solanum.git/blame - tests/ircd_util.h
Autogenerate tests/runtime/modules
[solanum.git] / tests / ircd_util.h
CommitLineData
d2b5f411
SA
1/*
2 * ircd_util.c: Utility functions for making test ircds
3 * Copyright 2017 Simon Arlott
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
18 * USA
19 */
20#include <stdio.h>
21#include <string.h>
22#include <stdlib.h>
23#include <unistd.h>
24
25#include "stdinc.h"
26#include "ircd_defs.h"
27
28#define TEST_ME_NAME "me.test"
60f1d711 29#define TEST_ME_ID "0AA"
d2b5f411
SA
30
31void ircd_util_init(const char *name);
692fbac6 32void ircd_util_reload_module(const char *name);
d2b5f411 33void ircd_util_free(void);