Skip to content

Instantly share code, notes, and snippets.

@gamapat
gamapat / 01_curl_global_state_handle.cpp
Last active May 20, 2020 07:44
libcurl file download examples
class CurlGlobalStateGuard
{
public:
CurlGlobalStateGuard() { curl_global_init(CURL_GLOBAL_DEFAULT); }
~CurlGlobalStateGuard() { curl_global_cleanup(); }
};
static CurlGlobalStateGuard handle_curl_state;