reactos/irc/ArchBlackmann/base64.h

13 lines
190 B
C
Raw Normal View History

// base64.h
#ifndef BASE64_H
#define BASE64_H
#include <string>
std::string base64_encode ( const std::string& s );
std::string base64_decode ( const std::string& s );
#endif//BASE64_H