summaryrefslogtreecommitdiff
path: root/docs/libcurl/curl_easy_unescape.3
diff options
context:
space:
mode:
Diffstat (limited to 'docs/libcurl/curl_easy_unescape.3')
-rw-r--r--docs/libcurl/curl_easy_unescape.310
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/libcurl/curl_easy_unescape.3 b/docs/libcurl/curl_easy_unescape.3
index 72026eb48..c6033f56a 100644
--- a/docs/libcurl/curl_easy_unescape.3
+++ b/docs/libcurl/curl_easy_unescape.3
@@ -33,13 +33,13 @@ char *curl_easy_unescape(CURL *curl, const char *input,
int inlength, int *outlength);
.fi
.SH DESCRIPTION
-This function converts the given URL encoded \fBinput\fP string to a "plain
-string" and returns that in an allocated memory area. All input characters
-that are URL encoded (%XX where XX is a two-digit hexadecimal number) are
-converted to their binary versions.
+This function converts the URL encoded string \fBinput\fP to a "plain string"
+and returns that in an allocated memory area. All input characters that are URL
+encoded (%XX where XX is a two-digit hexadecimal number) are converted to their
+binary versions.
If the \fBlength\fP argument is set to 0 (zero), \fIcurl_easy_unescape(3)\fP
-will use strlen() on the input \fBurl\fP string to find out the size.
+will use strlen() on \fBinput\fP to find out the size.
If \fBoutlength\fP is non-NULL, the function will write the length of the
returned string in the integer it points to. This allows proper handling even