~ubuntu-branches/ubuntu/gutsy/curl/gutsy

« back to all changes in this revision

Viewing changes to docs/libcurl/curl_unescape.3

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2006-06-29 15:04:24 UTC
  • mto: This revision was merged to the branch mainline in revision 8.
  • Revision ID: james.westby@ubuntu.com-20060629150424-be178abcwks1n519
Tags: upstream-7.15.4
ImportĀ upstreamĀ versionĀ 7.15.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
.\" You can view this file with:
2
2
.\" nroff -man [file]
3
 
.\" $Id: curl_unescape.3,v 1.5 2004/06/01 08:33:15 bagder Exp $
 
3
.\" $Id: curl_unescape.3,v 1.6 2006-04-07 21:50:47 bagder Exp $
4
4
.\"
5
5
.TH curl_unescape 3 "22 March 2001" "libcurl 7.7" "libcurl Manual"
6
6
.SH NAME
11
11
.BI "char *curl_unescape( char *" url ", int "length " );"
12
12
.ad
13
13
.SH DESCRIPTION
 
14
Obsolete function. Use \fIcurl_easy_unescape(3)\fP instead!
 
15
 
14
16
This function will convert the given URL encoded input string to a "plain
15
17
string" and return that as a new allocated string. All input characters that
16
18
are URL encoded (%XX where XX is a two-digit hexadecimal number) will be
20
22
input 'url' string to find out the size.
21
23
 
22
24
You must curl_free() the returned string when you're done with it.
 
25
.SH AVAILABILITY
 
26
Since 7.15.4, \fIcurl_easy_unescape(3)\fP should be used. This function will
 
27
be removed in a future release.
23
28
.SH RETURN VALUE
24
29
A pointer to a zero terminated string or NULL if it failed.
25
30
.SH "SEE ALSO"
26
 
.I curl_escape(3), curl_free(3), RFC 2396
 
31
.I curl_easy_escape(3), curl_easy_unescape(3), curl_free(3), RFC 2396