blob: 9d2b3f6cc940d19b2faa049b34872bf5b30c97c1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef _URLENCODE_H_
#define _URLENCODE_H_
#include <string>
int UrlDecode(const char *source, char *dest);
int UrlEncode(const char *source, char *dest, unsigned max);
std::string UrlDecodeString(const std::string & encoded);
std::string UrlEncodeString(const std::string & decoded);
#endif
|