]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
curl_easy_unescape.3: rename the argument
authorDaniel Stenberg <daniel@haxx.se>
Sun, 16 Apr 2023 15:04:39 +0000 (17:04 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Mon, 17 Apr 2023 12:54:50 +0000 (14:54 +0200)
and highlight it appropriately in the text.

Closes #10979

docs/libcurl/curl_easy_unescape.3

index 8d85a1e9a002c6a988ed63639ffba5aba5d75d82..3bf02050bf71e639f4c239b25295327825043dd8 100644 (file)
@@ -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.