Cleaned up the list implementation so as to NOT copy items into a new buffer.

This commit is contained in:
2022-10-07 20:46:55 +00:00
parent bdb4d2b241
commit 4b08707e67
4 changed files with 21 additions and 34 deletions
+1 -1
View File
@@ -15,7 +15,7 @@ typedef struct {
} List;
List* CreateList(void);
int AddListItem(const void *, size_t, List *);
int AddListItem(void *, List *);
void DestroyList(List*);
#endif