2000-06-02 07:31:18 -04:00
|
|
|
.\" You can view this file with:
|
|
|
|
.\" nroff -man [file]
|
2001-05-31 04:41:42 -04:00
|
|
|
.\" $Id$
|
2000-06-02 07:31:18 -04:00
|
|
|
.\"
|
2001-03-05 10:51:34 -05:00
|
|
|
.TH curl_slist_append 3 "5 March 2001" "libcurl 7.0" "libcurl Manual"
|
2000-06-02 07:31:18 -04:00
|
|
|
.SH NAME
|
|
|
|
curl_slist_append - add a string to an slist
|
|
|
|
.SH SYNOPSIS
|
|
|
|
.B #include <curl/curl.h>
|
|
|
|
.sp
|
2001-08-21 09:18:07 -04:00
|
|
|
.BI "struct curl_slist *curl_slist_append(struct curl_slist *" list,
|
2001-03-04 11:34:20 -05:00
|
|
|
.BI "const char * "string ");"
|
2000-06-02 07:31:18 -04:00
|
|
|
.ad
|
|
|
|
.SH DESCRIPTION
|
|
|
|
curl_slist_append() appends a specified string to a linked list of
|
|
|
|
strings. The existing
|
|
|
|
.I list
|
|
|
|
should be passed as the first argument while the new list is returned from
|
|
|
|
this function. The specified
|
|
|
|
.I string
|
|
|
|
has been appended when this function returns.
|
|
|
|
.SH RETURN VALUE
|
|
|
|
A null pointer is returned if anything went wrong, otherwise the new list
|
|
|
|
pointer is returned.
|
|
|
|
.SH "SEE ALSO"
|
|
|
|
.BR curl_slist_free_all "(3), "
|
|
|
|
.SH BUGS
|
|
|
|
Surely there are some, you tell me!
|
|
|
|
|