All Downloads are FREE. Search and download functionalities are using the official Maven repository.

scala-native.ffi.c Maven / Gradle / Ivy

There is a newer version: 4.0.0-M19
Show newest version
#if defined(STTP_CURL_FFI)
#include  

int sttp_curl_setopt_int(CURL *curl, CURLoption opt, int arg) {return curl_easy_setopt(curl, opt, arg); }
int sttp_curl_setopt_long(CURL *curl, CURLoption opt, long arg) {return curl_easy_setopt(curl, opt, arg); }
int sttp_curl_setopt_pointer(CURL *curl, CURLoption opt, void* arg) {return curl_easy_setopt(curl, opt, arg); }

int sttp_curl_getinfo_pointer(CURL *curl, CURLINFO info, void* arg) {return curl_easy_getinfo(curl, info, arg); }
#endif




© 2015 - 2024 Weber Informatics LLC | Privacy Policy