mirror of
https://github.com/curl/curl.git
synced 2026-05-07 14:17:28 +03:00
corrected example
This commit is contained in:
parent
d465199411
commit
75899741b9
1 changed files with 3 additions and 1 deletions
|
|
@ -24,8 +24,9 @@ The list should be freed again (after usage) with
|
|||
A null pointer is returned if anything went wrong, otherwise the new list
|
||||
pointer is returned.
|
||||
.SH EXAMPLE
|
||||
.nf
|
||||
CURL handle;
|
||||
curl_slist *slist=NULL;
|
||||
struct curl_slist *slist=NULL;
|
||||
|
||||
slist = curl_slist_append(slist, "pragma:");
|
||||
curl_easy_setopt(handle, CURLOPT_HTTPHEADER, slist);
|
||||
|
|
@ -33,5 +34,6 @@ pointer is returned.
|
|||
curl_easy_perform(handle);
|
||||
|
||||
curl_slist_free_all(slist); /* free the list again */
|
||||
.fi
|
||||
.SH "SEE ALSO"
|
||||
.BR curl_slist_free_all "(3), "
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue