table of contents
other versions
- buster 7.64.0-4+deb10u2
- buster-backports 7.74.0-1.2~bpo10+1
- testing 7.74.0-1.2
- unstable 7.74.0-1.3
curl_url_cleanup(3) | libcurl Manual | curl_url_cleanup(3) |
NAME¶
curl_url_cleanup - free a CURLU handleSYNOPSIS¶
#include <curl/curl.h>void curl_url_cleanup(CURLU *handle);
DESCRIPTION¶
Frees all the resources associated with the given CURLU handle!RETURN VALUE¶
noneEXAMPLE¶
CURLU *url = curl_url(); curl_url_set(url, CURLUPART_URL, "https://example.com", 0); curl_url_cleanup(url);
AVAILABILITY¶
Added in curl 7.62.0SEE ALSO¶
curl_url_dup(3), curl_url(3), curl_url_set(3), curl_url_get(3)November 5, 2020 | libcurl 7.74.0 |