mirror of
https://github.com/luanti-org/luanti.git
synced 2025-06-27 16:36:03 +00:00
Add #include guards to base64.h
This commit is contained in:
parent
07632b7d69
commit
a47b829040
1 changed files with 5 additions and 0 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue