Data Structures | |
| struct | array_list |
Defines | |
| #define | ARRAY_LIST_DEFAULT_SIZE 32 |
Functions | |
| typedef | void (array_list_free_fn)(void *data) |
| array_list * | array_list_new (array_list_free_fn *free_fn) |
| void | array_list_free (struct array_list *this) |
| void * | array_list_get_idx (struct array_list *this, int i) |
| int | array_list_put_idx (struct array_list *this, int i, void *data) |
| int | array_list_add (struct array_list *this, void *data) |
| int | array_list_length (struct array_list *this) |
|
|
|
|
||||||||||||
|
|
|
|
|
|
||||||||||||
|
|
|
|
|
|
|
|
|
||||||||||||||||
|
|
|
|
|
1.2.15