pub unsafe extern "C" fn CSTL_u32string_data(
instance: CSTL_UTF32StringRef,
) -> *mut char32_tExpand description
Returns a pointer to the underlying null-terminated array serving as character storage.
If CSTL_u32string_empty(instance) == true the pointer is still
valid and points to a single null character.
The range [CSTL_u32string_data(instance), CSTL_u32string_data(instance) + size]
is always valid.
The array may be mutated through the returned pointer excluding the past-the-end null terminator.