Constructor allow us to get list instancied by appending an element inside.

Property definitions

curl $ CURLSList :: with_str
	# Constructor allow us to get list instancied by appending an element inside.
	new with_str(s: String) import String.to_cstring `{
		struct curl_slist *l = NULL;
		l = curl_slist_append(l, String_to_cstring(s));
		return l;
	`}
lib/curl/native_curl.nit:292,2--297,3