Welcome to the My C Array repository! This project provides a dynamic array implementation in C, organized in a modular, folder-based structure. This README will guide you through the features, ...
void daInsert(DynamicArray_t da, size_t at, void* element); void daInsertArray(DynamicArray_t da, size_t at, void* elements, size_t amount); void daErase(DynamicArray_t da, size_t at); void ...