| 422 | } |
| 423 | |
| 424 | void *acl_array_index(const ACL_ARRAY *a, int idx) |
| 425 | { |
| 426 | if (idx < 0 || idx > a->count - 1) |
| 427 | return NULL; |
| 428 | |
| 429 | return a->items[idx]; |
| 430 | } |
| 431 | |
| 432 | int acl_array_size(const ACL_ARRAY *a) |
| 433 | { |
no outgoing calls
searching dependent graphs…