]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/inspstring.h
Get rid of strlcpy(), strlcat(), charlcat() and charremove()
[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 /** Binary to hexadecimal conversion */
28 CoreExport std::string BinToHex(const std::string& data);
29 /** Base64 encode */
30 CoreExport std::string BinToBase64(const std::string& data, const char* table = NULL, char pad = 0);
31 /** Base64 decode */
32 CoreExport std::string Base64ToBin(const std::string& data, const char* table = NULL);