C function to convert an nit Int to a CString (char*)

Property definitions

core :: abstract_text $ Int :: native_int_to_s
	# C function to convert an nit Int to a CString (char*)
	private fun native_int_to_s(nstr: CString, strlen: Int) `{
		snprintf(nstr, strlen, "%ld", self);
	`}
lib/core/text/abstract_text.nit:1993,2--1996,3