]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/inspstring.h
Merge insp20
[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 #pragma once
22
23 // This (config) is needed as inspstring doesn't pull in the central header
24 #include "config.h"
25 #include <cstring>
26
27 #ifndef HAS_STRLCPY
28 /** strlcpy() implementation for systems that don't have it (linux) */
29 CoreExport size_t strlcpy(char *dst, const char *src, size_t siz);
30 /** strlcat() implementation for systems that don't have it (linux) */
31 CoreExport size_t strlcat(char *dst, const char *src, size_t siz);
32 #endif
33
34 /** charlcat() will append one character to a string using the same
35  * safety scemantics as strlcat().
36  * @param x The string to operate on
37  * @param y the character to append to the end of x
38  * @param z The maximum allowed length for z including null terminator
39  */
40 CoreExport int charlcat(char* x,char y,int z);
41 /** charremove() will remove all instances of a character from a string
42  * @param mp The string to operate on
43  * @param remove The character to remove
44  */
45 CoreExport bool charremove(char* mp, char remove);
46
47 /** Binary to hexadecimal conversion */
48 CoreExport std::string BinToHex(const std::string& data);
49 /** Base64 encode */
50 CoreExport std::string BinToBase64(const std::string& data, const char* table = NULL, char pad = 0);
51 /** Base64 decode */
52 CoreExport std::string Base64ToBin(const std::string& data, const char* table = NULL);