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 --- .../docs/libcurl/curl_easy_unescape.html | 61 ---------------------- 1 file changed, 61 deletions(-) delete mode 100644 plugins/FTPFileYM/curl-7.29.0/docs/libcurl/curl_easy_unescape.html (limited to 'plugins/FTPFileYM/curl-7.29.0/docs/libcurl/curl_easy_unescape.html') diff --git a/plugins/FTPFileYM/curl-7.29.0/docs/libcurl/curl_easy_unescape.html b/plugins/FTPFileYM/curl-7.29.0/docs/libcurl/curl_easy_unescape.html deleted file mode 100644 index 5d1f01819e..0000000000 --- a/plugins/FTPFileYM/curl-7.29.0/docs/libcurl/curl_easy_unescape.html +++ /dev/null @@ -1,61 +0,0 @@ - - -curl_easy_unescape man page - - - - -

NAME

-

curl_easy_unescape - URL decodes the given string

SYNOPSIS

-

#include <curl/curl.h> -

char *curl_easy_unescape( CURL * curl , char * url , int inlength , int * outlength ); -

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. -

If the length argument is set to 0 (zero), curl_easy_unescape(3) will use strlen() on the input url string to find out the size. -

If outlength is non-NULL, the function will write the length of the returned string in the integer it points to. This allows an escaped string containing %00 to still get used properly after unescaping. -

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

AVAILABILITY

-

Added in 7.15.4 and replaces the old curl_unescape(3) function.

RETURN VALUE

-

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

SEE ALSO

-

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

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