X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=src%2Fbase64.h;h=1cb175518d5f2f4d367409caa7082c3087375c16;hb=2e292b67a0a02b045969034c06aaf92b42a83a81;hp=65d5db8b22cbb4c14c920cec79c542a454a1ae91;hpb=76e241392d2ad232b751c74df7cba9e5acfa7855;p=oweals%2Fminetest.git diff --git a/src/base64.h b/src/base64.h index 65d5db8b2..1cb175518 100644 --- a/src/base64.h +++ b/src/base64.h @@ -1,4 +1,10 @@ +#ifndef BASE64_HEADER +#define BASE64_HEADER + #include +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