ECE 2036 Project

Dependencies:   mbed wave_player 4DGL-uLCD-SE

Embed: (wiki syntax)

« Back to documentation index

llnode_t Struct Reference

llnode_t Struct Reference

This structure represents a single list node. More...

#include <doublely_linked_list.h>

Data Fields

void * data
 The data associated with this node.
struct llnode_tprevious
 A pointer to the previous node in the list.
struct llnode_tnext
 A pointer to the next node in the list.

Detailed Description

This structure represents a single list node.

Definition at line 33 of file doublely_linked_list.h.


Field Documentation

void* data

The data associated with this node.

Definition at line 35 of file doublely_linked_list.h.

struct llnode_t* next

A pointer to the next node in the list.

NULL if there is no next node.

Definition at line 41 of file doublely_linked_list.h.

struct llnode_t* previous

A pointer to the previous node in the list.

NULL if there is no previous node.

Definition at line 38 of file doublely_linked_list.h.