]> jfr.im git - irc/rqf/shadowircd.git/blame - include/supported.h
Added tag shadowircd-6.3.0-RC1 for changeset 5d25c87c7895
[irc/rqf/shadowircd.git] / include / supported.h
CommitLineData
212380e3 1/*
2 * charybdis: A slightly useful ircd.
3 * supported.h: isupport (005) numeric
4 *
5 * Entirely rewritten, August 2006 by Jilles Tjoelker
6 * Copyright (C) 2006 Jilles Tjoelker
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions are
10 * met:
11 *
12 * 1.Redistributions of source code must retain the above copyright notice,
13 * this list of conditions and the following disclaimer.
14 * 2.Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in the
16 * documentation and/or other materials provided with the distribution.
17 * 3.The name of the author may not be used to endorse or promote products
18 * derived from this software without specific prior written permission.
19 *
20 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
21 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
22 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
23 * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
24 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
25 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
26 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
28 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
29 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30 * POSSIBILITY OF SUCH DAMAGE.
31 *
212380e3 32 */
33
34#ifndef INCLUDED_supported_h
35#define INCLUDED_supported_h
36
58067bff 37extern void add_isupport(const char *, const char *(*)(const void *), const void *);
508c7c41 38extern const void *change_isupport(const char *, const char *(*)(const void *), const void *);
212380e3 39extern void delete_isupport(const char *);
40extern void show_isupport(struct Client *);
41extern void init_isupport(void);
42
58067bff
JT
43extern const char *isupport_intptr(const void *);
44extern const char *isupport_boolean(const void *);
45extern const char *isupport_string(const void *);
46extern const char *isupport_stringptr(const void *);
212380e3 47
48#endif /* INCLUDED_supported_h */