Skip to content
Snippets Groups Projects
Commit a47b8290 authored by Matthew I's avatar Matthew I Committed by Perttu Ahola
Browse files

Add #include guards to base64.h

parent 07632b7d
No related branches found
No related tags found
No related merge requests found
#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
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment