data_structures
|
#include "stack.h"
Go to the source code of this file.
Functions | |
void | stack_push (t_stack *stack, const void *data) |
Copy the item and add it to the stack. More... | |
void stack_push | ( | t_stack * | stack, |
const void * | data | ||
) |
Copy the item and add it to the stack.
data | The item to be added |
Definition at line 16 of file stack_push.c.