13 #define List_size(X) ((X)->count)
15 void List_init(List
*l
, size_t itemsize
);
16 void List_free(List
*l
);
17 int List_add(List
*l
, void* item
);
18 int List_get(List
*l
, size_t index
, void* item
);
19 void* List_getptr(List
*l
, size_t index
);
20 void List_sort(List
*l
, int(*compar
)(const void *, const void *));
22 #pragma RcB2 DEP "List.c"