curl.h 해당 파일 또는 디렉토리 없음
curl.h 해당 파일 또는 디렉토리 없음 curl이 명령을 설치했습니다 (Ubuntu 사용). sudo apt-get install curl 간단한 프로그램을 테스트 할 때 g++ test.cpp #include #include int main(void) { CURL *curl; CURLcode res; curl = curl_easy_init(); if(curl) { curl_easy_setopt(curl, CURLOPT_URL, "http://example.com"); /* Perform the request, res will get the return code */ res = curl_easy_perform(curl); /* Check for errors */ if(res != CURLE_OK) f..