summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2023-04-16 17:04:39 +0200
committerDaniel Stenberg <daniel@haxx.se>2023-04-17 14:54:50 +0200
commitfb1d62ff0736961032a489a0a8bff4b79b13eccb (patch)
treedc592beb2b5795bc6550dda554a126e76afc571e /docs
parent81c9c8cd398a4832170fb4fe8e996930b0a6b3d0 (diff)
downloadcurl-fb1d62ff0736961032a489a0a8bff4b79b13eccb.tar.gz
curl_easy_unescape.3: rename the argument
and highlight it appropriately in the text. Closes #10979
Diffstat (limited to 'docs')
-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 8d85a1e9a..3bf02050b 100644
--- a/docs/libcurl/curl_easy_unescape.3
+++ b/docs/libcurl/curl_easy_unescape.3
@@ -29,14 +29,14 @@ curl_easy_unescape - URL decodes the given string
.nf
#include <curl/curl.h>
-char *curl_easy_unescape(CURL *curl, const char *url,
+char *curl_easy_unescape(CURL *curl, const char *input,
int inlength, int *outlength);
.fi
.SH DESCRIPTION
-This function converts the given URL encoded input 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 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.
If the \fBlength\fP argument is set to 0 (zero), \fIcurl_easy_unescape(3)\fP
will use strlen() on the input \fIurl\fP string to find out the size.