MCPcopy Create free account
hub / github.com/acl-dev/acl / acl_stack_space

Function acl_stack_space

lib_acl/src/stdlib/common/acl_stack.c:152–156  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

150/* if you are going to append a known and large number of items, call this first */
151
152void 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
158ACL_STACK *acl_stack_create(int init_size)
159{

Callers 1

acl_stack_createFunction · 0.85

Calls 1

stack_growFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…