Added a function to remove an item from the generic list, which is mainly used for the tokens.

This commit is contained in:
2023-03-07 21:31:14 -06:00
parent 5e9e1bdec4
commit 4230708f15
4 changed files with 16 additions and 168 deletions
+1
View File
@@ -16,6 +16,7 @@ typedef struct {
List* CreateList(void);
int AddListItem(void *, List *);
void RemoveItem(int index, List * list);
void DestroyList(List*);
#endif