aboutsummaryrefslogtreecommitdiff
path: root/docs/libcurl/curl_slist_append.3
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-03-04 10:09:48 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-03-04 10:09:48 +0000
commit01f04b9a4127aa2bfb9cdaa8b2d4114268f45514 (patch)
treea4245a962cd4878986473a539e08dac49c14364f /docs/libcurl/curl_slist_append.3
parent34f9ab1046d178e6512c966f4aad5e6a5a46ad33 (diff)
ripped out from ../ and put in its own directory now
Diffstat (limited to 'docs/libcurl/curl_slist_append.3')
-rw-r--r--docs/libcurl/curl_slist_append.329
1 files changed, 29 insertions, 0 deletions
diff --git a/docs/libcurl/curl_slist_append.3 b/docs/libcurl/curl_slist_append.3
new file mode 100644
index 000000000..4737b989b
--- /dev/null
+++ b/docs/libcurl/curl_slist_append.3
@@ -0,0 +1,29 @@
+.\" You can view this file with:
+.\" nroff -man [file]
+.\" $Id$
+.\"
+.TH curl_slist_append 3 "5 March 2001" "libcurl 7.0" "libcurl Manual"
+.SH NAME
+curl_slist_append - add a string to an slist
+.SH SYNOPSIS
+.B #include <curl/curl.h>
+.sp
+.BI "struct curl_slist *curl_slist_append(struct curl_slist *" list,
+.BI "const char * "string ");"
+.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!
+