aboutsummaryrefslogtreecommitdiffstats
path: root/CommonLibs/URLEncodeTest.cpp
blob: dbc46307187bf887543b2751d10fc1c5f82eab44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#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;
}