mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-18 19:35:06 +02:00
* anytermd: Added anyterm to extras. Included modifications on original anytermd project source code. Added a new spec file for centos/fedora/rhel. Tested on FC16/i386 and centos6/x86_84. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6257 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
16 lines
228 B
C++
16 lines
228 B
C++
#include <iostream>
|
|
#include <string>
|
|
|
|
#include "base64.hh"
|
|
|
|
using namespace std;
|
|
using namespace pbe;
|
|
|
|
|
|
int main()
|
|
{
|
|
string s="dGhlIHF1aWNrIGJyb3duIGZveCBqdW1wcyBvdmVyIHRoZSBsYXp5IGRvZyEKCg==";
|
|
cout << decode_base64(s);
|
|
}
|
|
|