MCPcopy Create free account
hub / github.com/algorithm-archivists/algorithm-archive / stack_pop

Function stack_pop

contents/flood_fill/code/c/flood_fill.c:71–73  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

69}
70
71struct point stack_pop(struct stack *stk) {
72 return stk->data[--stk->top];
73}
74
75void free_stack(struct stack stk) {
76 free(stk.data);

Callers 1

stack_fillFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected