#include "console.h"
Go to the source code of this file.
Data Structures | |
struct | Stack |
Defines | |
#define | STACK_EXPAND_UP (1) |
#define | STACK_EXPAND_DOWN (0) |
Functions | |
void | stackPush (Stack *stack, long data) |
long | stackPop (Stack *stack) |
long | stackPeek (Stack *stack, long offset) |
void | stackPoke (Stack *stack, long offset, long data) |
void | stackRemove (Stack *stack, long offset, long count) |
void | stackInsert (Stack *stack, long offset, long *data, long count) |
void | stackDisplay (Stack *stack) |