made work: removeAtIndex(x);

This commit is contained in:
Odweta
2023-12-25 01:34:00 +01:00
parent c5ffbb9e89
commit b00858c9be
5 changed files with 86 additions and 3 deletions
+2
View File
@@ -28,3 +28,5 @@ void listCleanup(list_t* l); // f
void* listPop(list_t* l); // popping the last value of the list and returning it
void listInsertAt(list_t* l, int index, dataType_e type, void* element); // inserts an element at a given index
void listRemoveAt(list_t* l, int index);
+2 -1
View File
@@ -44,7 +44,8 @@ vectorToString(vector_t* v); // convert the vector into a regular string
void*
vectorGetAt(vector_t* v, int index); // get an element at the given index
void
vectorRemoveAt(vector_t* v, int index);