Position of the first nul character.

Property definitions

core $ CString :: cstring_length
	# Position of the first nul character.
	fun cstring_length: Int
	do
		var l = 0
		while self[l] != 0 do l += 1
		return l
	end
lib/core/text/native.nit:119,2--125,4