diff options
author | Daniel Stenberg <daniel@haxx.se> | 2000-06-02 11:31:18 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2000-06-02 11:31:18 +0000 |
commit | ef62fc7fe75a1bf88dd8817ae9e8aac15358a593 (patch) | |
tree | 156979df9a6ad53a06279a63eb82252eb7452fa3 | |
parent | 52195a0547b5b91533f2f77478485ce27d50319d (diff) |
added description
-rw-r--r-- | docs/curl_slist_append.3 | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/docs/curl_slist_append.3 b/docs/curl_slist_append.3 index e69de29bb..03651ac26 100644 --- a/docs/curl_slist_append.3 +++ b/docs/curl_slist_append.3 @@ -0,0 +1,29 @@ +.\" You can view this file with: +.\" nroff -man [file] +.\" Written by Daniel.Stenberg@haxx.nu +.\" +.TH curl_slist_append 3 "2 June 2000" "Curl 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_slit *" list, +.BI "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! + |