mirror of
https://github.com/reactos/reactos.git
synced 2024-11-03 05:18:55 +00:00
13 lines
190 B
C
13 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
|