1
0
Fork 0

Work on getting queue closer to compile.

This commit is contained in:
wael 2022-01-03 22:53:52 +02:00
parent b8278330db
commit 58566f3a87
No known key found for this signature in database
GPG Key ID: C0A5FBF4558963D4
1 changed files with 0 additions and 1 deletions

View File

@ -748,7 +748,6 @@ int clear_list_data_double_linked_list(double_linked_list_t **list, void (*free_
}
/* This function attempts to serialize a doubly-linked list into an array. */
/* The function will allocate and return a pointer to said array on success, NULL on failure. */
/* Note that the array has to be allocated by the caller. */
/* The array setting function is used to set the values at an index, takes the pointer to the array, index and value to put. */
void *serialize_double_linked_list(double_linked_list_t *list, void (*array_setting_function)(void*, size_t, void*), void *array) {