pub unsafe extern "C" fn CSTL_string_insert_str(
instance: CSTL_StringRef,
where_: *const c_char,
other: CSTL_StringCRef,
alloc: *mut CSTL_Alloc,
) -> *mut c_charExpand description
Inserts the string other at the pointer where in instance.
If the length of the resulting string is greater than CSTL_string_max_size()
this function has no effect and returns NULL, otherwise it returns a pointer
to the first inserted character.
The pointer where must be valid and dereferenceable on instance.