made work: removeAtIndex(x);
This commit is contained in:
@@ -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
@@ -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);
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user