| 151 | } |
| 152 | |
| 153 | int private_array_push(ACL_ARRAY *a, void *obj) |
| 154 | { |
| 155 | if (a->count >= a->capacity) |
| 156 | private_array_grow(a, a->count + 16); |
| 157 | a->items[a->count++] = obj; |
| 158 | return(a->count - 1); |
| 159 | } |
| 160 | |
| 161 | void *private_array_pop(ACL_ARRAY *a) |
| 162 | { |
no test coverage detected
searching dependent graphs…