Update list.c
Fixing indent
This commit is contained in:
@@ -36,8 +36,8 @@ list_t *create_list(size_t elementSize, freeFunction freeFn)
|
|||||||
list->logicalLength = 0;
|
list->logicalLength = 0;
|
||||||
list->elementSize = elementSize;
|
list->elementSize = elementSize;
|
||||||
list->head = list->tail = NULL;
|
list->head = list->tail = NULL;
|
||||||
list->freeFn = freeFn;
|
list->freeFn = freeFn;
|
||||||
return list;
|
return list;
|
||||||
}
|
}
|
||||||
|
|
||||||
void delete_list(list_t *list)
|
void delete_list(list_t *list)
|
||||||
|
|||||||
Reference in New Issue
Block a user