Pytania oznaczone «libcurl»

98
C libcurl pobiera dane wyjściowe do łańcucha

Chcę zapisać wynik tej funkcji curl w zmiennej, jak mogę to zrobić? #include <stdio.h> #include <curl/curl.h> int main(void) { CURL *curl; CURLcode res; curl = curl_easy_init(); if(curl) { curl_easy_setopt(curl, CURLOPT_URL, "curl.haxx.se"); res = curl_easy_perform(curl);...