curl_formfree.3 615 B

1234567891011121314151617181920
  1. .\" You can view this file with:
  2. .\" nroff -man [file]
  3. .\" $Id$
  4. .\"
  5. .TH curl_formfree 3 "6 April 2001" "libcurl 7.7.1" "libcurl Manual"
  6. .SH NAME
  7. curl_formfree - free a previously build multipart/formdata HTTP POST chain
  8. .SH SYNOPSIS
  9. .B #include <curl/curl.h>
  10. .sp
  11. .BI "void curl_formfree(struct curl_httppost *" form);
  12. .ad
  13. .SH DESCRIPTION
  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 \fIcurl_easy_perform(3)\fP has been called.
  17. .SH RETURN VALUE
  18. None
  19. .SH "SEE ALSO"
  20. .BR curl_formadd "(3) "