blob: dbc46307187bf887543b2751d10fc1c5f82eab44 [file] [log] [blame]
kurtis.heimerl5a872472013-05-31 21:47:25 +00001
2#include "URLEncode.h"
3#include <string>
4#include <iostream>
5
6
7using namespace std;
8
9
10int main(int argc, char *argv[])
11{
12
13 string test = string("Testing: !@#$%^&*() " __DATE__ " " __TIME__);
14 cout << test << endl;
15 cout << URLEncode(test) << endl;
16}
17