Ds_list_duplicate - hpgDesigns/hpgdesigns-dev.io GitHub Wiki
Description
Destroys the given data structure list removing and freeing all elements from memory.
Parameters
Parameter | Data Type | Description |
---|---|---|
id | constant unsigned integer | index of the list |
Return Values
void: This function does not return anything.
Example Call
// demonstrates destroying a data structure list
ds_list_destroy(mylist);
NOTOC