Posts Tagged ‘curl_version’

curl_version_info – returns run-time libcurl version info
USAGE
#include <curl/curl.h>

curl_version_info_data *curl_version_info( CURLversion type);

DESCRIPTION
Returns a pointer to a filled in struct with information about various
run-time features in libcurl. type [...]

Thursday, August 27th, 2009 at 02:20 | Comments Off
Categories: c

curl_version – returns the libcurl version string
USAGE
#include <curl/curl.h>

char *curl_version( );

DESCRIPTION
Returns a human readable string with the version number of libcurl and
some of its important components (like [...]

Thursday, August 27th, 2009 at 02:20 | Comments Off
Categories: c
TOP