mirror of
https://gitea.osmocom.org/cellular-infrastructure/osmo-trx.git
synced 2025-10-31 20:23:33 +00:00
git-svn-id: http://wush.net/svn/range/software/public/openbts/trunk@5655 19bc5d8c-e614-43d4-8b26-e1612bc8e597
18 lines
252 B
C++
18 lines
252 B
C++
|
|
#include "URLEncode.h"
|
|
#include <string>
|
|
#include <iostream>
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
|
|
string test = string("Testing: !@#$%^&*() " __DATE__ " " __TIME__);
|
|
cout << test << endl;
|
|
cout << URLEncode(test) << endl;
|
|
}
|
|
|