data_structures
|
#include "stack.h"
Go to the source code of this file.
Functions | |
void * | stack_pop (t_stack *stack) |
Removed and returns the item most recently added to this stack. More... | |
void* stack_pop | ( | t_stack * | stack | ) |
Removed and returns the item most recently added to this stack.
NULL
if the stack is empty. Definition at line 16 of file stack_pop.c.