1 .\" You can view this file with:
3 .\" $Id: curl_formfree.3,v 1.3 2004/02/27 15:34:06 bagder Exp $
5 .TH curl_formfree 3 "6 April 2001" "libcurl 7.7.1" "libcurl Manual"
7 curl_formfree - free a previously build multipart/formdata HTTP POST chain
9 .B #include <curl/curl.h>
11 .BI "void curl_formfree(struct curl_httppost *" form);
14 curl_formfree() is used to clean up data previously built/appended with
15 \fIcurl_formadd(3)\fP. This must be called when the data has been used, which
16 typically means after the \fIcurl_easy_perform(3)\fP has been called.
20 .BR curl_formadd "(3) "