Function CSTL_u16string_insert

Source
pub unsafe extern "C" fn CSTL_u16string_insert(
    instance: CSTL_UTF16StringRef,
    where_: *const char16_t,
    ptr: *const char16_t,
    alloc: *mut CSTL_Alloc,
) -> *mut char16_t
Expand description

Inserts the null-terminated string at ptr at the pointer where in instance.

If the length of the resulting string is greater than CSTL_u16string_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.