added declariations for some internal functions

This commit is contained in:
2026-05-26 00:25:59 -05:00
parent bb555e34e3
commit 5f429f38da
2 changed files with 9 additions and 9 deletions

View File

@@ -1,10 +1,9 @@
#ifndef INTERNAL_MARIGOLD_VECTOR_H
#define INTERNAL_MARIGOLD_VECTOR_H
/**
* @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);
struct vector_struct* vector_initialize();
void vector_free_members();
#endif /* INTERNAL_MARIGOLD_VECTOR_H */