MCPcopy Create free account
hub / github.com/PolyMC/PolyMC / hoedown_stack_push

Function hoedown_stack_push

libraries/hoedown/src/stack.c:48–57  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

46}
47
48void
49hoedown_stack_push(hoedown_stack *st, void *item)
50{
51 assert(st);
52
53 if (st->size >= st->asize)
54 hoedown_stack_grow(st, st->size * 2);
55
56 st->item[st->size++] = item;
57}
58
59void *
60hoedown_stack_pop(hoedown_stack *st)

Callers 1

newbufFunction · 0.85

Calls 1

hoedown_stack_growFunction · 0.85

Tested by

no test coverage detected