at least strings and vectors of ints work, not much else though... contributions welcome

This commit is contained in:
Odweta
2024-02-07 11:10:31 +01:00
parent ee6f702751
commit 97a4df95a6
8 changed files with 183 additions and 39 deletions
+2
View File
@@ -35,6 +35,8 @@ void *vector_get_at(vector_t *self, int index); // get an element at the giv
void vector_remove_at(vector_t *self, int index);
void vector_deep_copy(vector_t *src, vector_t *dst);
void _vector_print_recursive(vector_t *self, int depth);