data_structures
|
#include "stack.h"
Go to the source code of this file.
Functions | |
void * | stack_peek (const t_stack *stack) |
Returns the item most recently added to this stack, without removing it. More... | |
void* stack_peek | ( | const t_stack * | stack | ) |
Returns the item most recently added to this stack, without removing it.
NULL
if the stack is empty. Definition at line 16 of file stack_peek.c.