2018-08-05 17:51:07 +08:00
|
|
|
.\" **************************************************************************
|
|
|
|
.\" * _ _ ____ _
|
|
|
|
.\" * Project ___| | | | _ \| |
|
|
|
|
.\" * / __| | | | |_) | |
|
|
|
|
.\" * | (__| |_| | _ <| |___
|
|
|
|
.\" * \___|\___/|_| \_\_____|
|
|
|
|
.\" *
|
2021-03-27 19:52:25 +08:00
|
|
|
.\" * Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
|
2018-08-05 17:51:07 +08:00
|
|
|
.\" *
|
|
|
|
.\" * This software is licensed as described in the file COPYING, which
|
|
|
|
.\" * you should have received as part of this distribution. The terms
|
2020-11-04 21:02:01 +08:00
|
|
|
.\" * are also available at https://curl.se/docs/copyright.html.
|
2018-08-05 17:51:07 +08:00
|
|
|
.\" *
|
|
|
|
.\" * You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
|
|
.\" * copies of the Software, and permit persons to whom the Software is
|
|
|
|
.\" * furnished to do so, under the terms of the COPYING file.
|
|
|
|
.\" *
|
|
|
|
.\" * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
.\" * KIND, either express or implied.
|
|
|
|
.\" *
|
|
|
|
.\" **************************************************************************
|
|
|
|
.TH curl_url_cleanup 3 "6 Aug 2018" "libcurl" "libcurl Manual"
|
|
|
|
.SH NAME
|
|
|
|
curl_url_cleanup - free a CURLU handle
|
|
|
|
.SH SYNOPSIS
|
2021-11-26 21:20:18 +08:00
|
|
|
.nf
|
|
|
|
#include <curl/curl.h>
|
2018-08-05 17:51:07 +08:00
|
|
|
|
|
|
|
void curl_url_cleanup(CURLU *handle);
|
|
|
|
.fi
|
|
|
|
.SH DESCRIPTION
|
|
|
|
Frees all the resources associated with the given CURLU handle!
|
|
|
|
.SH EXAMPLE
|
|
|
|
.nf
|
|
|
|
CURLU *url = curl_url();
|
|
|
|
curl_url_set(url, CURLUPART_URL, "https://example.com", 0);
|
|
|
|
curl_url_cleanup(url);
|
|
|
|
.fi
|
|
|
|
.SH AVAILABILITY
|
2021-10-25 17:45:09 +08:00
|
|
|
Added in 7.62.0
|
2021-10-25 14:54:08 +08:00
|
|
|
.SH RETURN VALUE
|
|
|
|
none
|
2018-08-05 17:51:07 +08:00
|
|
|
.SH "SEE ALSO"
|
|
|
|
.BR curl_url_dup "(3), " curl_url "(3), " curl_url_set "(3), "
|
2021-02-22 06:46:14 +08:00
|
|
|
.BR curl_url_get "(3), " CURLOPT_CURLU "(3), "
|