hurl.h 205 B

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