mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 09:34:43 +00:00
089686cac2
svn path=/trunk/; revision=12289
12 lines
190 B
C++
12 lines
190 B
C++
// 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
|