at least strings and vectors of ints work, not much else though... contributions welcome
This commit is contained in:
@@ -30,6 +30,10 @@ void list_cleanup(list_t *self); /
|
||||
|
||||
void *list_pop(list_t *self); // popping the last value of the list and returning it
|
||||
|
||||
void list_deep_copy(list_t *src, list_t *dst);
|
||||
|
||||
vector_t *list_get_at_vector(list_t *self, int index);
|
||||
|
||||
void list_insert_at(list_t *self, int index, type_e type, void *element); // inserts an element at a given index
|
||||
|
||||
void list_remove_at(list_t *self, int index);
|
||||
|
||||
Reference in New Issue
Block a user