Setup the assembler to use the new file reading code.

This commit is contained in:
2022-04-28 22:24:10 -05:00
parent 1968590654
commit 1900b504e7
6 changed files with 60 additions and 33 deletions
+1 -1
View File
@@ -25,7 +25,7 @@ List* CreateList() {
int AddListItem(const void *value, size_t size, List* list) {
if (!list) return -1;
if (!value) return -1;
if (size == 0) return - 1;
if (size == 0) return -1;
if (list->capacity < list->size + 1) {
void* ptr = realloc(list->content, sizeof(void*) * list->capacity * 2);