mirror of
https://github.com/luanti-org/luanti.git
synced 2025-08-11 17:51:04 +00:00
5 lines
180 B
C++
5 lines
180 B
C++
#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);
|