From a47b82904041584da71e8d8489385a322d3de5cb Mon Sep 17 00:00:00 2001 From: Matthew I Date: Sun, 19 Aug 2012 22:30:59 -0400 Subject: [PATCH] Add #include guards to base64.h --- src/base64.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/base64.h b/src/base64.h index a29e69687..5f2d6743d 100644 --- a/src/base64.h +++ b/src/base64.h @@ -1,5 +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 \ No newline at end of file