MCPcopy Create free account
hub / github.com/IoLanguage/io / Stack_free

Function Stack_free

libs/basekit/source/Stack.c:26–29  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

24}
25
26void Stack_free(Stack *self) {
27 io_free(self->items);
28 io_free(self);
29}
30
31Stack *Stack_clone(const Stack *self) {
32 Stack *s = (Stack *)cpalloc(self, sizeof(Stack));

Callers 4

Stack_do_on_Function · 0.85
IoState_new_atAddressFunction · 0.85
IoLexer_freeFunction · 0.85
IoCoroutine_freeFunction · 0.85

Calls 1

io_freeFunction · 0.85

Tested by

no test coverage detected