Home | History | Annotate | Download | only in shared

Lines Matching refs:array

6  * Declaration of struct array is in header because we may want to embed the
9 struct array {
10 void **array;
16 void array_init(struct array *array, size_t step);
17 int array_append(struct array *array, const void *element);
18 int array_append_unique(struct array *array, const void *element);
19 void array_pop(struct array *array);
20 void array_free_array(struct array *array);
21 void array_sort(struct array *array, int (*cmp)(const void *a, const void *b));
22 int array_remove_at(struct array *array, unsigned int pos);