a wrapper around strings

This commit is contained in:
Odweta
2024-02-04 18:51:42 +01:00
parent 53a282a3ea
commit 8832a2a4aa
9 changed files with 210 additions and 103 deletions
+5
View File
@@ -1,3 +1,6 @@
#ifndef LIST_H
#define LIST_H
/*
* What is this?
*
@@ -34,3 +37,5 @@ void listRemoveAt(list_t* l, int index);
void listSetAt(list_t* l, int index, dataType_e type, void* element);
void* listGetAt(list_t* l, int index);
#endif