initial list.h commit

This commit is contained in:
Odweta
2023-12-22 00:39:17 +01:00
parent b8235f3fa9
commit ea527405e5
6 changed files with 166 additions and 16 deletions
+7 -1
View File
@@ -51,4 +51,10 @@ 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
#endif
void _printVectorRecursive(vector_t* v, int depth);
#endif