Add find_surface_nodes_in_area LUA call which permit to only get the nodes which...
[oweals/minetest.git] / src / util / base64.h
1 #ifndef BASE64_HEADER
2 #define BASE64_HEADER
3
4 #include <string>
5
6 bool base64_is_valid(std::string const& s);
7 std::string base64_encode(unsigned char const* , unsigned int len);
8 std::string base64_decode(std::string const& s);
9
10 #endif // BASE64_HEADER