| 105 | } |
| 106 | |
| 107 | static void array_prepare_append(ACL_ARRAY *a, int app_count) |
| 108 | { |
| 109 | acl_assert(app_count > 0); |
| 110 | if (a->count + app_count > a->capacity) |
| 111 | private_array_grow(a, a->count + app_count); |
| 112 | } |
| 113 | |
| 114 | ACL_ARRAY *private_array_create(int init_size) |
| 115 | { |
no test coverage detected
searching dependent graphs…