curl_easy_escape

This function converts the given input string to a URL encoded string. All input characters that are not a-z, A-Z, 0-9, '-', '.', '_' or '~' are converted to their "URL escaped" version (%NN where NN is a two-digit hexadecimal number). see also https://curl.haxx.se/libcurl/c/curl_easy_escape.html

Syntax

native curl_easy_escape(const CURL:handle, const url[], buffer[], const maxlen)

Usage

handle Curl handle
url URL for encoding
buffer Buffer to copy encoded url
maxlen Maximum size of the buffer
Defined in curl.inc . This documentation was automatically generated from source.