utility.h: Change Buffer's interface to be more compatible with SharedBuffer's interf...
[oweals/minetest.git] / src / base64.h
1 #include <string>
2
3 std::string base64_encode(unsigned char const* , unsigned int len);
4 std::string base64_decode(std::string const& s);