mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-07 05:21:12 +00:00
15 lines
376 B
C
15 lines
376 B
C
|
//
|
||
|
// base64 encoding and decoding with C++.
|
||
|
// Version: 1.01.00
|
||
|
//
|
||
|
|
||
|
#ifndef BASE64_H_C0CE2A47_D10E_42C9_A27C_C883944E704A
|
||
|
#define BASE64_H_C0CE2A47_D10E_42C9_A27C_C883944E704A
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
std::string base64_encode(unsigned char const* , unsigned int len);
|
||
|
std::string base64_decode(std::string const& s);
|
||
|
|
||
|
#endif /* BASE64_H_C0CE2A47_D10E_42C9_A27C_C883944E704A */
|