From ac48668a549fe76648e0ac3f93c9943383e043f5 Mon Sep 17 00:00:00 2001 From: Kirill Volinsky Date: Sun, 10 Nov 2013 18:02:01 +0000 Subject: curl folder renamed git-svn-id: http://svn.miranda-ng.org/main/trunk@6858 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- .../FTPFileYM/curl/docs/libcurl/curl_unescape.html | 61 ++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 plugins/FTPFileYM/curl/docs/libcurl/curl_unescape.html (limited to 'plugins/FTPFileYM/curl/docs/libcurl/curl_unescape.html') diff --git a/plugins/FTPFileYM/curl/docs/libcurl/curl_unescape.html b/plugins/FTPFileYM/curl/docs/libcurl/curl_unescape.html new file mode 100644 index 0000000000..b8e434c017 --- /dev/null +++ b/plugins/FTPFileYM/curl/docs/libcurl/curl_unescape.html @@ -0,0 +1,61 @@ + + +curl_unescape man page + + + + +

NAME

+

curl_unescape - URL decodes the given string

SYNOPSIS

+

#include <curl/curl.h> +

char *curl_unescape( char * url , int length ); +

DESCRIPTION

+

Obsolete function. Use curl_easy_unescape(3) instead! +

This function will convert the given URL encoded input string to a "plain string" and return that as a new allocated string. All input characters that are URL encoded (%XX where XX is a two-digit hexadecimal number) will be converted to their plain text versions. +

If the 'length' argument is set to 0, curl_unescape() will use strlen() on the input 'url' string to find out the size. +

You must curl_free() the returned string when you're done with it.

AVAILABILITY

+

Since 7.15.4, curl_easy_unescape(3) should be used. This function will be removed in a future release.

RETURN VALUE

+

A pointer to a zero terminated string or NULL if it failed.

SEE ALSO

+

curl_easy_escape(3), curl_easy_unescape(3), curl_free(3), RFC 2396

+ This HTML page was made with roffit. + -- cgit v1.2.3