GBAlatro
A Demake of Balatro for the GBA
Loading...
Searching...
No Matches
ListNode Struct Reference

A single entry in a List. More...

#include <list.h>

Data Fields

ListNodeprev
 The previous ListNode in the associated List, NULL if at the head of the list.
 
ListNodenext
 The next ListNode in the associated List, NULL if at the tail of the list.
 
void * data
 Pointer to generic data stored in this node.
 

Detailed Description

A single entry in a List.

Definition at line 38 of file list.h.

Field Documentation

◆ data

void* data

Pointer to generic data stored in this node.

Definition at line 54 of file list.h.

◆ next

ListNode* next

The next ListNode in the associated List, NULL if at the tail of the list.

Definition at line 49 of file list.h.

◆ prev

ListNode* prev

The previous ListNode in the associated List, NULL if at the head of the list.

Definition at line 44 of file list.h.


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