Add #include guards to base64.h

This commit is contained in:
Matthew I 2012-08-19 22:30:59 -04:00 committed by Perttu Ahola
parent 07632b7d69
commit a47b829040
1 changed files with 5 additions and 0 deletions

View File

@ -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