ECE 2036 Project

Dependencies:   mbed wave_player 4DGL-uLCD-SE

Embed: (wiki syntax)

« Back to documentation index

dlinkedlist_t Struct Reference

dlinkedlist_t Struct Reference

This structure represents an entire linked list. More...

#include <doublely_linked_list.h>

Data Fields

struct llnode_thead
 The head pointer for the list (points to the first node)
struct llnode_ttail
 The tail pointer for the list (points to the last node)
struct llnode_tcurrent
 The current pointer for the list (points to the current node)
int size
 The number of nodes in the list.

Detailed Description

This structure represents an entire linked list.

Definition at line 16 of file doublely_linked_list.h.


Field Documentation

struct llnode_t* current

The current pointer for the list (points to the current node)

Definition at line 24 of file doublely_linked_list.h.

struct llnode_t* head

The head pointer for the list (points to the first node)

Definition at line 18 of file doublely_linked_list.h.

int size

The number of nodes in the list.

Definition at line 27 of file doublely_linked_list.h.

struct llnode_t* tail

The tail pointer for the list (points to the last node)

Definition at line 21 of file doublely_linked_list.h.