mdz_ansi_destroy - maxdz-gmbh/mdz_string GitHub Wiki
Destroy string including underlying data. After destroying, pointer to string is set to NULL
.
If string is attached using mdz_ansi_createAttached(), free()
will not be called.
If string data is attached using mdz_ansi_attachData()
, m_pData
will not be destroyed.
void mdz_ansi_destroy(struct mdz_Ansi** const ppAnsi);
Parameter | Description |
---|---|
ppAnsi |
pointer to pointer to string returned by mdz_ansi_create() or mdz_ansi_create_attached()
|