initial commit

This commit is contained in:
2026-05-16 15:25:58 -05:00
parent d781ef9501
commit 11c2ad914c
11 changed files with 255 additions and 1 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);