aboutsummaryrefslogtreecommitdiff
path: root/docs/libcurl/curl_slist_append.3
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2003-06-26 11:41:08 +0000
committerDaniel Stenberg <daniel@haxx.se>2003-06-26 11:41:08 +0000
commitb7c14b3c27d42d09e0e493ed3bf3ac279ed6800a (patch)
treebec542171552cc5d29ac48886afe3c99a0f64682 /docs/libcurl/curl_slist_append.3
parent3130b44535232b1bfa87ac9a834bbabdb61e2d04 (diff)
mention that it copies the string you add
Diffstat (limited to 'docs/libcurl/curl_slist_append.3')
-rw-r--r--docs/libcurl/curl_slist_append.35
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/libcurl/curl_slist_append.3 b/docs/libcurl/curl_slist_append.3
index fbf993229..b47a38320 100644
--- a/docs/libcurl/curl_slist_append.3
+++ b/docs/libcurl/curl_slist_append.3
@@ -2,7 +2,7 @@
.\" nroff -man [file]
.\" $Id$
.\"
-.TH curl_slist_append 3 "21 Feb 2003" "libcurl 7.10.4" "libcurl Manual"
+.TH curl_slist_append 3 "19 Jun 2003" "libcurl 7.10.4" "libcurl Manual"
.SH NAME
curl_slist_append - add a string to an slist
.SH SYNOPSIS
@@ -15,7 +15,8 @@ curl_slist_append - add a string to an slist
curl_slist_append() appends a specified string to a linked list of
strings. The existing \fIlist\fP should be passed as the first argument while
the new list is returned from this function. The specified \fIstring\fP has
-been appended when this function returns.
+been appended when this function returns. curl_slist_append() copies the
+string.
The list should be freed again (after usage) with \fBcurl_slist_free_all()\fP.
.SH RETURN VALUE