Simulated product dispenser

Dependencies:   HTS221

Fork of mbed-cloud-workshop-connect-HTS221 by Jim Carver

Embed: (wiki syntax)

« Back to documentation index

ns_list Struct Reference

ns_list Struct Reference

Underlying generic linked list head. More...

#include <ns_list.h>

Data Fields

void * first_entry
 Pointer to first entry, or NULL if list is empty.
void ** last_nextptr
 Pointer to last entry's `next` pointer, or to head's `first_entry` pointer if list is empty.

Detailed Description

Underlying generic linked list head.

Users should not use this type directly, but use the NS_LIST_HEAD() macro.

Definition at line 82 of file ns_list.h.


Field Documentation

void* first_entry

Pointer to first entry, or NULL if list is empty.

Definition at line 83 of file ns_list.h.

void** last_nextptr

Pointer to last entry's `next` pointer, or to head's `first_entry` pointer if list is empty.

Definition at line 84 of file ns_list.h.