curl_easy_unescape
This function converts the given URL encoded input string to a "plain string". All input characters that are URL encoded (%XX where XX is a two-digit hexadecimal number) are converted to their binary versions. see also https://curl.haxx.se/libcurl/c/curl_easy_unescape.html
Syntax
native curl_easy_unescape(const CURL: handle, const url[], buffer[], const maxlen)
Usage
| handle | Curl handle |
| url | URL for decoding |
| buffer | Buffer to copy decoded url |
| maxlen | Maximum size of the buffer |
Return
This function has no return value.
Errors
If passed curl handle is not a valid
Defined in
curl.inc
at line 56
.
This documentation was automatically generated from source.