Merge 12735:15568 from xmlbuildsystem branch
[reactos.git] / irc / ArchBlackmann / base64.h
1 // base64.h
2
3 #ifndef BASE64_H
4 #define BASE64_H
5
6 #include <string>
7
8 std::string base64_encode ( const std::string& s );
9
10 std::string base64_decode ( const std::string& s );
11
12 #endif//BASE64_H