osurs  0.0.1
Data Fields
StackNode Struct Reference

Stack node. More...

#include <stack.h>

Collaboration diagram for StackNode:
Collaboration graph
[legend]

Data Fields

void * data
 
struct StackNodenext
 

Detailed Description

Stack node.

This structure represents a node in a Stack data structure. It consists of a void pointer to the node's data and a pointer to the next node in the stack.

Field Documentation

◆ data

void* StackNode::data

Data stored in the node.

◆ next

struct StackNode* StackNode::next

Pointer to the next node in the stack.


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