You mean `curl.GLOBAL_ALL`, and it's for https://curl.se/libcurl/c/curl_global_init.html
// CURL_GLOBAL_ALL combines all initialization flags. CURL_GLOBAL_ALL: i64 = 3
init :: proc() -> (ok: bool) { return curl_global_init(CURL_GLOBAL_ALL) == 0 }
My question still stands and has not been answered.
You mean `curl.GLOBAL_ALL`, and it's for https://curl.se/libcurl/c/curl_global_init.html