GOBNILP  f164d83
Data Fields
Stack Struct Reference

A stack of integer values. More...

#include <stack.h>

Data Fields

int * items
 The items currently in the stack. More...
 
int max_capacity
 The maximum number of items the stack can contain. More...
 
int num_items
 The number of items currently in the stack. More...
 

Detailed Description

A stack of integer values.

Field Documentation

◆ items

int* Stack::items

The items currently in the stack.

Referenced by circuit(), StackContains(), StackCreate(), StackPop(), and StackPush().

◆ max_capacity

int Stack::max_capacity

The maximum number of items the stack can contain.

Referenced by StackCreate().

◆ num_items

int Stack::num_items

The number of items currently in the stack.

Referenced by StackContains(), StackCreate(), StackPop(), StackPush(), and StackSize().


The documentation for this struct was generated from the following file: