mirror of
https://github.com/curl/curl.git
synced 2026-04-15 00:01:41 +03:00
The curldown conversion accidentally replaced daniel@haxx.se with just daniel.se. This reverts back to the proper email address in the curldown docs as well as in a few other stray places where it was incorrect (while unrelated to curldown). Reviewed-by: Daniel Stenberg <daniel@haxx.se> Closes: #12997
777 B
777 B
| c | SPDX-License-Identifier | Title | Section | Source | See-also | |||||
|---|---|---|---|---|---|---|---|---|---|---|
| Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al. | curl | curl_url_cleanup | 3 | libcurl |
|
NAME
curl_url_cleanup - free the URL handle
SYNOPSIS
#include <curl/curl.h>
void curl_url_cleanup(CURLU *handle);
DESCRIPTION
Frees all the resources associated with the given CURLU handle!
Passing in a NULL pointer in handle makes this function return immediately with no action.
EXAMPLE
int main(void)
{
CURLU *url = curl_url();
curl_url_set(url, CURLUPART_URL, "https://example.com", 0);
curl_url_cleanup(url);
}
AVAILABILITY
Added in 7.62.0
RETURN VALUE
none