mirror of
https://github.com/minetest/minetest.git
synced 2025-03-01 16:14:41 +01:00
Add #include guards to base64.h
This commit is contained in:
@ -1,5 +1,10 @@
|
|||||||
|
#ifndef BASE64_HEADER
|
||||||
|
#define BASE64_HEADER
|
||||||
|
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
||||||
bool base64_is_valid(std::string const& s);
|
bool base64_is_valid(std::string const& s);
|
||||||
std::string base64_encode(unsigned char const* , unsigned int len);
|
std::string base64_encode(unsigned char const* , unsigned int len);
|
||||||
std::string base64_decode(std::string const& s);
|
std::string base64_decode(std::string const& s);
|
||||||
|
|
||||||
|
#endif // BASE64_HEADER
|
Reference in New Issue
Block a user