mirror of
https://github.com/minetest/minetest.git
synced 2025-02-17 10:23:47 +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>
|
||||
|
||||
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);
|
||||
|
||||
#endif // BASE64_HEADER
|
Reference in New Issue
Block a user