Class to manage a linked list. Utility that can be built on or used alone

Dependents:   Waldo_Embed_V2 elevator_with_queue RaheeNew DS1820 ... more

Embed: (wiki syntax)

« Back to documentation index

node Struct Reference

node Struct Reference

The Linked List structure. More...

#include <LL.h>

Data Fields

void * data
struct nodenext

Detailed Description

The Linked List structure.

Definition at line 33 of file LL.h.


Field Documentation

void* data

pointer to list member data

Definition at line 35 of file LL.h.

struct node* next

pointer to the next list member

Definition at line 36 of file LL.h.