diff options
author | Svyatoslav Mishyn <juef@openmailbox.org> | 2015-08-23 14:43:04 +0300 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2015-08-24 23:58:57 +0200 |
commit | f21408132a1a58bb15f9e603b4875217b25d5de2 (patch) | |
tree | e9efcda4b262b9ca84afdb8f27ada1d78219a2ea /docs/libcurl/curl_easy_escape.3 | |
parent | aec249f89fe430964a21f60fca33c935c3dcbdfa (diff) |
curl_easy_{escape,unescape}.3: "char *" vs. "const char *"
Closes #395
Diffstat (limited to 'docs/libcurl/curl_easy_escape.3')
-rw-r--r-- | docs/libcurl/curl_easy_escape.3 | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/libcurl/curl_easy_escape.3 b/docs/libcurl/curl_easy_escape.3 index da2b38221..76a116ac5 100644 --- a/docs/libcurl/curl_easy_escape.3 +++ b/docs/libcurl/curl_easy_escape.3 @@ -26,7 +26,8 @@ curl_easy_escape - URL encodes the given string .SH SYNOPSIS .B #include <curl/curl.h> .sp -.BI "char *curl_easy_escape( CURL *" curl ", char *" string ", int "length " );" +.BI "char *curl_easy_escape( CURL *" curl ", const char *" string +.BI ", int "length " );" .ad .SH DESCRIPTION This function converts the given input \fIstring\fP to a URL encoded string |