mdz_utf32_destroy - maxdz-gmbh/mdz_unicode GitHub Wiki
Destroy UTF-32
string including underlying data. After destroying, pointer to string is set to NULL
.
If utf32 is attached using mdz_utf32_createAttached(), free()
will not be called.
If utf32 data is attached using mdz_utf32_attachData()
, m_pData
will not be destroyed.
void mdz_utf32_destroy(struct mdz_Utf32** ppUtf32);
Parameter | Description |
---|---|
ppUtf32 |
pointer to pointer to string returned by mdz_utf32_create() or mdz_utf32_create_attached()
|