]> git.lizzy.rs Git - minetest.git/blobdiff - src/base64.h
Fix memory leaks due to messed up memory handling for particles as well as their...
[minetest.git] / src / base64.h
index 65d5db8b22cbb4c14c920cec79c542a454a1ae91..1cb175518d5f2f4d367409caa7082c3087375c16 100644 (file)
@@ -1,4 +1,10 @@
+#ifndef BASE64_HEADER
+#define BASE64_HEADER
+
 #include <string>
 
+bool base64_is_valid(std::string const& s);
 std::string base64_encode(unsigned char const* , unsigned int len);
 std::string base64_decode(std::string const& s);
+
+#endif // BASE64_HEADER