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

Function acl_stack_pop

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

Source from the content-addressed store, hash-verified

284}
285
286void *acl_stack_pop(ACL_STACK *s)
287{
288 if (s == NULL)
289 return (NULL);
290
291 if (s->count < 1)
292 return (NULL);
293
294 return (s->items[--s->count]);
295}
296
297void *acl_stack_top(ACL_STACK *s)
298{

Callers 7

event_processFunction · 0.85
hook_net.cFile · 0.85
test_stack_popFunction · 0.85
acl_allocator_freeFunction · 0.85
memPoolShrinkFunction · 0.85
memPoolAllocFunction · 0.85
stack_pop_backFunction · 0.85

Calls

no outgoing calls

Tested by 1

test_stack_popFunction · 0.68

Used in the wild real call sites across dependent graphs

searching dependent graphs…