| 150 | /* if you are going to append a known and large number of items, call this first */ |
| 151 | |
| 152 | void acl_stack_space(ACL_STACK *s, int count) |
| 153 | { |
| 154 | if (s->count + count > s->capacity) |
| 155 | stack_grow(s, s->count + count); |
| 156 | } |
| 157 | |
| 158 | ACL_STACK *acl_stack_create(int init_size) |
| 159 | { |
no test coverage detected
searching dependent graphs…