Internal method used to get String object information initially known as C Chars type

Property definitions

curl $ NativeCurl :: native_getinfo_chars
	# Internal method used to get String object information initially known as C Chars type
	private fun native_getinfo_chars(opt: CURLInfoChars, res: Ref[CString]): CURLCode
	import Ref[CString].item= `{
		char *r;
		CURLcode c = curl_easy_getinfo( self, opt, &r);
		if (c == CURLE_OK) Ref_of_CString_item__assign(res, r);
		return c;
	`}
lib/curl/native_curl.nit:123,2--130,3