joey shelton / LED_Demo2

Dependencies:   MAX44000 PWM_Tone_Library nexpaq_mdk

Fork of LED_Demo by joey shelton

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 FEATURE_CLIENT/mbed-client-mbed-tls/test/mbed-client-mbed-tls/unittest/common/ns_list.h.


Field Documentation

void * first_entry

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

Definition at line 84 of file FEATURE_CLIENT/mbed-client-mbed-tls/test/mbed-client-mbed-tls/unittest/common/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 85 of file FEATURE_CLIENT/mbed-client-mbed-tls/test/mbed-client-mbed-tls/unittest/common/ns_list.h.