summaryrefslogtreecommitdiffstats
path: root/src/StringUtils.h
diff options
context:
space:
mode:
authormadmaxoft <github@xoft.cz>2014-04-01 22:47:39 +0200
committermadmaxoft <github@xoft.cz>2014-04-01 22:47:39 +0200
commitbcf5021feb3bbb8069b80e3b892f0c80db35a4c6 (patch)
tree7a3f70a6b4fde5acd53fd5876f0257caa2e6ef15 /src/StringUtils.h
parentMerged branch 'msDifference'. (diff)
downloadcuberite-bcf5021feb3bbb8069b80e3b892f0c80db35a4c6.tar
cuberite-bcf5021feb3bbb8069b80e3b892f0c80db35a4c6.tar.gz
cuberite-bcf5021feb3bbb8069b80e3b892f0c80db35a4c6.tar.bz2
cuberite-bcf5021feb3bbb8069b80e3b892f0c80db35a4c6.tar.lz
cuberite-bcf5021feb3bbb8069b80e3b892f0c80db35a4c6.tar.xz
cuberite-bcf5021feb3bbb8069b80e3b892f0c80db35a4c6.tar.zst
cuberite-bcf5021feb3bbb8069b80e3b892f0c80db35a4c6.zip
Diffstat (limited to 'src/StringUtils.h')
-rw-r--r--src/StringUtils.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/StringUtils.h b/src/StringUtils.h
index 4feff7553..da395e5b5 100644
--- a/src/StringUtils.h
+++ b/src/StringUtils.h
@@ -79,10 +79,10 @@ extern AString URLDecode(const AString & a_String); // Cannot export to Lua aut
extern AString ReplaceAllCharOccurrences(const AString & a_String, char a_From, char a_To); // Needn't export to Lua, since Lua doesn't have chars anyway
/// Decodes a Base64-encoded string into the raw data
-extern AString Base64Decode(const AString & a_Base64String);
+extern AString Base64Decode(const AString & a_Base64String); // Exported manually due to embedded NULs and extra parameter
/// Encodes a string into Base64
-extern AString Base64Encode(const AString & a_Input);
+extern AString Base64Encode(const AString & a_Input); // Exported manually due to embedded NULs and extra parameter
/// Reads two bytes from the specified memory location and interprets them as BigEndian short
extern short GetBEShort(const char * a_Mem);