123456789101112131415161718192021222324252627282930313233343536373839 |
- .\
- .\
- .\
- .\
- .\
- .\
- .\
- .\
- .\
- .\
- .\
- .\
- .\
- .\
- .\
- .\
- .\
- .\" * This software is distributed on an "AS IS
- .\
- .\
- .\
- .TH curl_free 3 "August 09, 2018" "libcurl 7.61.1" "libcurl Manual"
- .SH NAME
- curl_free - reclaim memory that has been obtained through a libcurl call
- .SH SYNOPSIS
- .B #include <curl/curl.h>
- .sp
- .BI "void curl_free( char *" ptr " );"
- .ad
- .SH DESCRIPTION
- curl_free reclaims memory that has been obtained through a libcurl call. Use
- \fIcurl_free(3)\fP instead of free() to avoid anomalies that can result from
- differences in memory management between your application and libcurl.
- Passing in a NULL pointer in \fIptr\fP will make this function return
- immediately with no action.
- .SH "SEE ALSO"
- .BR curl_easy_unescape "(3), " curl_easy_escape "(3) "
|