Cleaned up the list implementation so as to NOT copy items into a new buffer.
This commit is contained in:
+1
-1
@@ -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
|
||||
Reference in New Issue
Block a user