curl_global_cleanup.3 691 B

123456789101112131415161718192021222324
  1. .\" You can view this file with:
  2. .\" nroff -man [file]
  3. .\" $Id: curl_global_cleanup.3,v 1.2 2004/02/27 15:34:06 bagder Exp $
  4. .\"
  5. .TH curl_global_cleanup 3 "28 May 2001" "libcurl 7.8" "libcurl Manual"
  6. .SH NAME
  7. curl_global_cleanup - global libcurl cleanup
  8. .SH SYNOPSIS
  9. .B #include <curl/curl.h>
  10. .sp
  11. .BI "void curl_global_cleanup(void);"
  12. .ad
  13. .SH DESCRIPTION
  14. curl_global_cleanup must be called once (no matter how many threads or libcurl
  15. sessions that'll be used) by every application that uses libcurl, after all
  16. uses of libcurl is complete.
  17. This is the opposite of \fIcurl_global_init(3)\fP.
  18. Not calling this function may result in memory leaks.
  19. .SH "SEE ALSO"
  20. .BR curl_global_init "(3), "