mirror of
https://github.com/moparisthebest/curl
synced 2024-11-12 04:25:08 -05:00
minor format edits
This commit is contained in:
parent
7ffb8c6aee
commit
67dcddbef7
@ -7,9 +7,9 @@
|
|||||||
curl_easy_cleanup - End a libcurl easy session
|
curl_easy_cleanup - End a libcurl easy session
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
.B #include <curl/curl.h>
|
.B #include <curl/curl.h>
|
||||||
.sp
|
|
||||||
.BI "void curl_easy_cleanup(CURL *" handle ");"
|
.BI "void curl_easy_cleanup(CURL *" handle ");"
|
||||||
.ad
|
|
||||||
.SH DESCRIPTION
|
.SH DESCRIPTION
|
||||||
This function must be the last function to call for an easy session. It is the
|
This function must be the last function to call for an easy session. It is the
|
||||||
opposite of the \fIcurl_easy_init\fP function and must be called with the same
|
opposite of the \fIcurl_easy_init\fP function and must be called with the same
|
||||||
|
@ -7,9 +7,9 @@
|
|||||||
curl_easy_duphandle - Clone a libcurl session handle
|
curl_easy_duphandle - Clone a libcurl session handle
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
.B #include <curl/curl.h>
|
.B #include <curl/curl.h>
|
||||||
.sp
|
|
||||||
.BI "CURL *curl_easy_duphandle(CURL *"handle ");"
|
.BI "CURL *curl_easy_duphandle(CURL *"handle ");"
|
||||||
.ad
|
|
||||||
.SH DESCRIPTION
|
.SH DESCRIPTION
|
||||||
This function will return a new curl handle, a duplicate, using all the
|
This function will return a new curl handle, a duplicate, using all the
|
||||||
options previously set in the input curl \fIhandle\fP. Both handles can
|
options previously set in the input curl \fIhandle\fP. Both handles can
|
||||||
|
@ -7,9 +7,9 @@
|
|||||||
curl_easy_init - Start a libcurl easy session
|
curl_easy_init - Start a libcurl easy session
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
.B #include <curl/curl.h>
|
.B #include <curl/curl.h>
|
||||||
.sp
|
|
||||||
.BI "CURL *curl_easy_init( );"
|
.BI "CURL *curl_easy_init( );"
|
||||||
.ad
|
|
||||||
.SH DESCRIPTION
|
.SH DESCRIPTION
|
||||||
This function must be the first function to call, and it returns a CURL easy
|
This function must be the first function to call, and it returns a CURL easy
|
||||||
handle that you must use as input to other easy-functions. curl_easy_init
|
handle that you must use as input to other easy-functions. curl_easy_init
|
||||||
|
@ -23,4 +23,4 @@ You must curl_free() the returned string when you're done with it.
|
|||||||
.SH RETURN VALUE
|
.SH RETURN VALUE
|
||||||
A pointer to a zero terminated string or NULL if it failed.
|
A pointer to a zero terminated string or NULL if it failed.
|
||||||
.SH "SEE ALSO"
|
.SH "SEE ALSO"
|
||||||
.I curl_unescape(), curl_free(), RFC 2396
|
.BR curl_unescape(), curl_free(), RFC 2396
|
||||||
|
Loading…
Reference in New Issue
Block a user