]> git.lizzy.rs Git - minetest.git/blob - src/base64.h
Allow the LUA API to set animations to meshes as well as the animation speed. Also...
[minetest.git] / src / base64.h
1 #include <string>
2
3 bool base64_is_valid(std::string const& s);
4 std::string base64_encode(unsigned char const* , unsigned int len);
5 std::string base64_decode(std::string const& s);