Internal method to set options to CURL using String parameter.

Property definitions

curl $ NativeCurl :: native_setopt_string
	# Internal method to set options to CURL using String parameter.
	private fun native_setopt_string(opt: CURLOption, str: CString): CURLCode `{
		return curl_easy_setopt( self, opt, str);
	`}
lib/curl/native_curl.nit:109,2--112,3