]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/inspstring.h
Merge pull request #92 from Robby-/insp20-headers
[user/henk/code/inspircd.git] / include / inspstring.h
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
5  *   Copyright (C) 2007 Craig Edwards <craigedwards@brainbox.cc>
6  *
7  * This file is part of InspIRCd.  InspIRCd is free software: you can
8  * redistribute it and/or modify it under the terms of the GNU General Public
9  * License as published by the Free Software Foundation, version 2.
10  *
11  * This program is distributed in the hope that it will be useful, but WITHOUT
12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
13  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
14  * details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20
21 #ifndef INSPSTRING_H
22 #define INSPSTRING_H
23
24 // This (inspircd_config) is needed as inspstring doesn't pull in the central header
25 #include "inspircd_config.h"
26 #include <cstring>
27 //#include <cstddef>
28
29 #ifndef HAS_STRLCPY
30 /** strlcpy() implementation for systems that don't have it (linux) */
31 CoreExport size_t strlcpy(char *dst, const char *src, size_t siz);
32 /** strlcat() implementation for systems that don't have it (linux) */
33 CoreExport size_t strlcat(char *dst, const char *src, size_t siz);
34 #endif
35
36 /** charlcat() will append one character to a string using the same
37  * safety scemantics as strlcat().
38  * @param x The string to operate on
39  * @param y the character to append to the end of x
40  * @param z The maximum allowed length for z including null terminator
41  */
42 CoreExport int charlcat(char* x,char y,int z);
43 /** charremove() will remove all instances of a character from a string
44  * @param mp The string to operate on
45  * @param remove The character to remove
46  */
47 CoreExport bool charremove(char* mp, char remove);
48
49 /** Binary to hexadecimal conversion */
50 CoreExport std::string BinToHex(const std::string& data);
51 /** Base64 encode */
52 CoreExport std::string BinToBase64(const std::string& data, const char* table = NULL, char pad = 0);
53 /** Base64 decode */
54 CoreExport std::string Base64ToBin(const std::string& data, const char* table = NULL);
55
56 #endif
57