curl_easy_cleanupΒΆ

curl_easy_cleanup destroys the curl pointer, created with curl_easy_init.

curl_easy_cleanup

bool = curl_easy_cleanup(curl)

Return Value

If TRUE (1), the function was successful, otherwise FALSE (0).

Parameters

curl

Is the curl pointer returned by curl_easy_init.

Example

See curl_easy_init.

History

Version Description
R2015.0 New.

id-1295628