hurl.h 163 B

123456789
  1. #ifndef HV_URL_H_
  2. #define HV_URL_H_
  3. #include <string>
  4. std::string url_escape(const char* istr);
  5. std::string url_unescape(const char* istr);
  6. #endif // HV_URL_H_