mirror of
https://github.com/minetest/minetest.git
synced 2024-11-09 17:23:45 +01:00
Add #include guards to base64.h
This commit is contained in:
parent
07632b7d69
commit
a47b829040
@ -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
|
Loading…
Reference in New Issue
Block a user