#include <simplelist.h>
Data Fields | |
size_t | capacity |
Current capacity of the list. | |
unsigned | count |
Current elements' count. | |
unsigned | current |
element_free_func | free_element |
Pointer to the function that frees the element's memory. | |
void ** | list |
size_t | size |
The size of the list's element. |
..
|
Current capacity of the list. Must be more or equal to the count of elements |
|
Current elements' count.
|
|
|
|
Pointer to the function that frees the element's memory.
|
|
|
|
The size of the list's element.
|