renamed to vector

This commit is contained in:
2026-05-25 14:28:02 -05:00
parent 7de4fbdd4f
commit a1fdf5f0c6
7 changed files with 597 additions and 594 deletions

View File

@@ -0,0 +1,10 @@
/**
* @brief Destroy a dynamic array and free its memory.
*
* Frees the memory block and the array structure itself.
* Sets owner_count to 0 before freeing.
*
* @param array Pointer to the dynamic_array to destroy.
*/
void dynamic_array_destroy(dynamic_array* array);