| 217 | } |
| 218 | |
| 219 | int acl_array_append(ACL_ARRAY *a, void *obj) |
| 220 | { |
| 221 | if (a->count >= a->capacity) |
| 222 | acl_array_grow(a, a->count + 16); |
| 223 | a->items[a->count++] = obj; |
| 224 | return a->count - 1; |
| 225 | } |
| 226 | |
| 227 | int acl_array_pred_insert(ACL_ARRAY *a, int position, void *obj) |
| 228 | { |
searching dependent graphs…