]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/inspstring.h
And now, just to force you to recompile the *whole* ircd.. updated headers on the...
[user/henk/code/inspircd.git] / include / inspstring.h
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2007 InspIRCd Development Team
6  * See: http://www.inspircd.org/wiki/index.php/Credits
7  *
8  * This program is free but copyrighted software; see
9  *            the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 #ifndef __IN_INSPSTRING_H
15 #define __IN_INSPSTRING_H
16
17 #include "inspircd_config.h"
18 #include <cstddef>
19
20 #ifndef HAS_STRLCPY
21 size_t strlcpy(char *dst, const char *src, size_t siz);
22 size_t strlcat(char *dst, const char *src, size_t siz);
23 #endif
24
25 int charlcat(char* x,char y,int z);
26 bool charremove(char* mp, char remove);
27
28 #endif